Skip to content

Commit

Permalink
paymaster: fix transfer_callback
Browse files Browse the repository at this point in the history
  • Loading branch information
CostinCarabas committed Nov 20, 2024
1 parent 648957e commit 18a6ad3
Showing 1 changed file with 16 additions and 19 deletions.
35 changes: 16 additions & 19 deletions contracts/paymaster/src/forward_call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,32 +36,29 @@ pub trait ForwardCall {
payments: PaymentsVec<Self::Api>,
#[call_result] result: ManagedAsyncCallResult<MultiValueEncoded<ManagedBuffer>>,
) -> MultiValueEncoded<ManagedBuffer> {
let back_transfers = self.blockchain().get_back_transfers();

// Send the original input tokens back to the original caller
if !back_transfers.esdt_payments.is_empty() {
self.tx()
.to(&original_caller)
.payment(&back_transfers.esdt_payments)
.transfer();
}
if back_transfers.total_egld_amount > 0 {
self.tx()
.to(&original_caller)
.egld(back_transfers.total_egld_amount)
.transfer();
}

match result {
ManagedAsyncCallResult::Ok(return_values) => {
let back_transfers = self.blockchain().get_back_transfers();

// Send the original input tokens back to the original caller
if !back_transfers.esdt_payments.is_empty() {
self.tx()
.to(&original_caller)
.payment(&back_transfers.esdt_payments)
.transfer();
}
if back_transfers.total_egld_amount > 0 {
self.tx()
.to(&original_caller)
.egld(back_transfers.total_egld_amount)
.transfer();
}
// Send the resulted tokens to the original caller
return_values
}
ManagedAsyncCallResult::Err(err) => {
let egld_value = self.call_value().egld_value();
// Send the resulted tokens to the original caller
self.tx().to(&original_caller).payment(&payments).transfer();
self.tx().to(&original_caller).egld(egld_value).transfer();
self.tx().to(&original_caller).payment(payments).transfer();

let mut err_result = MultiValueEncoded::new();
err_result.push(ManagedBuffer::new_from_bytes(ERR_CALLBACK_MSG));
Expand Down

0 comments on commit 18a6ad3

Please sign in to comment.