Skip to content

Commit

Permalink
Paymaster: Fixes after review
Browse files Browse the repository at this point in the history
  • Loading branch information
CostinCarabas committed Oct 12, 2023
1 parent 0af3cfa commit b638f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/paymaster/src/forward_call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub trait ForwardCall {
#[call_result] result: ManagedAsyncCallResult<MultiValueEncoded<ManagedBuffer>>,
) -> MultiValueEncoded<ManagedBuffer> {
// TODO: use ManagedGetBackTransfers once rc1.6 is activated
let callback_payments = self.call_value().all_esdt_transfers();
let callback_payments = self.call_value().all_esdt_transfers().clone_value();

match result {
ManagedAsyncCallResult::Ok(return_values) => {
Expand Down

0 comments on commit b638f38

Please sign in to comment.