difftreelog
fix PR
in: master
2 files changed
pallets/balances-adapter/src/lib.rsdiffbeforeafterboth54 };54 };55 use pallet_balances::WeightInfo;55 use pallet_balances::WeightInfo;56 use pallet_common::{56 use pallet_common::{erc::CrossAccountId, Error as CommonError, Pallet as PalletCommon};57 erc::CrossAccountId, Error as CommonError, Pallet as PalletCommon,58 NATIVE_FUNGIBLE_COLLECTION_ID,59 };60 use pallet_structure::Pallet as PalletStructure;57 use pallet_structure::Pallet as PalletStructure;61 use sp_core::U256;58 use sp_core::U256;62 use sp_runtime::DispatchError;59 use sp_runtime::DispatchError;63 use up_data_structs::{budget::Budget, mapping::TokenAddressMapping, TokenId};60 use up_data_structs::{budget::Budget, mapping::TokenAddressMapping};646165 #[pallet::config]62 #[pallet::config]66 pub trait Config:63 pub trait Config:135 from: &T::CrossAccountId,132 from: &T::CrossAccountId,136 to: &T::CrossAccountId,133 to: &T::CrossAccountId,137 amount: u128,134 amount: u128,138 nesting_budget: &dyn Budget,135 _nesting_budget: &dyn Budget,139 ) -> DispatchResultWithPostInfo {136 ) -> DispatchResultWithPostInfo {140 <PalletCommon<T>>::ensure_correct_receiver(to)?;137 <PalletCommon<T>>::ensure_correct_receiver(to)?;141138tests/src/eth/nativeRpc/estimateGas.test.tsdiffbeforeafterboth--- a/tests/src/eth/nativeRpc/estimateGas.test.ts
+++ b/tests/src/eth/nativeRpc/estimateGas.test.ts
@@ -28,7 +28,7 @@
});
});
- itEth.only('estimate gas', async ({helper}) => {
+ itEth.skip('estimate gas', async ({helper}) => {
const BALANCE = 100n;
const BALANCE_TO_TRANSFER = 90n;