Skip to content

Commit

Permalink
Fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
CostinCarabas committed Jul 1, 2024
1 parent 792d1a8 commit 4bf2e29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
name: Contracts
uses: multiversx/mx-sc-actions/.github/workflows/[email protected]
with:
rust-toolchain: stable
rust-toolchain: nightly-2024-05-22
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 2 additions & 4 deletions multi-transfer-esdt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ multiversx_sc::imports!();

use eth_address::EthAddress;
use token_module::ProxyTrait as OtherProxyTrait;
use transaction::{
EthTransaction, PaymentsVec, Transaction, TxBatchSplitInFields, TxNonce,
};
use transaction::{EthTransaction, PaymentsVec, Transaction, TxNonce};

const DEFAULT_MAX_TX_BATCH_SIZE: usize = 10;
const DEFAULT_MAX_TX_BATCH_BLOCK_DURATION: u64 = u64::MAX;
Expand Down Expand Up @@ -133,7 +131,7 @@ pub trait MultiTransferEsdt:
.add_refund_batch(refund_batch)
.with_multi_token_transfer(refund_payments)
.execute_on_dest_context();
},
}
OptionalValue::None => {}
}
}
Expand Down

0 comments on commit 4bf2e29

Please sign in to comment.