difftreelog
fix PR
in: master
2 files changed
pallets/balances-adapter/src/lib.rsdiffbeforeafterboth--- a/pallets/balances-adapter/src/lib.rs
+++ b/pallets/balances-adapter/src/lib.rs
@@ -53,14 +53,11 @@
traits::{Currency, ExistenceRequirement, Get},
};
use pallet_balances::WeightInfo;
- use pallet_common::{
- erc::CrossAccountId, Error as CommonError, Pallet as PalletCommon,
- NATIVE_FUNGIBLE_COLLECTION_ID,
- };
+ use pallet_common::{erc::CrossAccountId, Error as CommonError, Pallet as PalletCommon};
use pallet_structure::Pallet as PalletStructure;
use sp_core::U256;
use sp_runtime::DispatchError;
- use up_data_structs::{budget::Budget, mapping::TokenAddressMapping, TokenId};
+ use up_data_structs::{budget::Budget, mapping::TokenAddressMapping};
#[pallet::config]
pub trait Config:
@@ -135,7 +132,7 @@
from: &T::CrossAccountId,
to: &T::CrossAccountId,
amount: u128,
- nesting_budget: &dyn Budget,
+ _nesting_budget: &dyn Budget,
) -> DispatchResultWithPostInfo {
<PalletCommon<T>>::ensure_correct_receiver(to)?;
tests/src/eth/nativeRpc/estimateGas.test.tsdiffbeforeafterboth28 });28 });29 });29 });303031 itEth.only('estimate gas', async ({helper}) => {31 itEth.skip('estimate gas', async ({helper}) => {32 const BALANCE = 100n;32 const BALANCE = 100n;33 const BALANCE_TO_TRANSFER = 90n;33 const BALANCE_TO_TRANSFER = 90n;3434