diff --git a/pallet/ethtx-forwarder/src/mock.rs b/pallet/ethtx-forwarder/src/mock.rs index c99c05f87..70d02a037 100644 --- a/pallet/ethtx-forwarder/src/mock.rs +++ b/pallet/ethtx-forwarder/src/mock.rs @@ -41,6 +41,7 @@ impl frame_system::Config for Runtime { #[derive_impl(pallet_balances::config_preludes::TestDefaultConfig as pallet_balances::DefaultConfig)] impl pallet_balances::Config for Runtime { type AccountStore = System; + type ExistentialDeposit = (); } #[derive_impl(pallet_timestamp::config_preludes::TestDefaultConfig as pallet_timestamp::DefaultConfig)] diff --git a/runtime/crab/src/pallets/tx_pause.rs b/runtime/crab/src/pallets/tx_pause.rs index 357b945b8..56d8a1164 100644 --- a/runtime/crab/src/pallets/tx_pause.rs +++ b/runtime/crab/src/pallets/tx_pause.rs @@ -43,8 +43,8 @@ impl frame_support::traits::Contains | b"Assets" | b"Deposit" | b"AccountMigration" | b"DarwiniaStaking" - | b"Ethereum" - | b"EVM" | b"EthTxForwarder" + | b"Ethereum" | b"EVM" + | b"EthTxForwarder" ) } } diff --git a/runtime/koi/src/pallets/tx_pause.rs b/runtime/koi/src/pallets/tx_pause.rs index c0db67c7c..c57e581b4 100644 --- a/runtime/koi/src/pallets/tx_pause.rs +++ b/runtime/koi/src/pallets/tx_pause.rs @@ -42,8 +42,8 @@ impl frame_support::traits::Contains b"Balances" | b"Assets" | b"Deposit" | b"DarwiniaStaking" - | b"Ethereum" - | b"EVM" | b"EthTxForwarder" + | b"Ethereum" | b"EVM" + | b"EthTxForwarder" ) } }