Skip to content

Commit 0a7a7a0

Browse files
committed
Added transferKeepAlive to Filter
1 parent 5cfffa9 commit 0a7a7a0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

runtime/local/src/precompiles.rs

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ impl Contains<RuntimeCall> for WhitelistedLockdropCalls {
8484
..
8585
}) => true,
8686
RuntimeCall::Balances(pallet_balances::Call::transfer { .. }) => true,
87+
RuntimeCall::Balances(pallet_balances::Call::transfer_keep_alive { .. }) => true,
8788
RuntimeCall::Assets(pallet_assets::Call::transfer { .. }) => true,
8889
_ => false,
8990
}

runtime/shibuya/src/precompiles.rs

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ impl Contains<RuntimeCall> for WhitelistedLockdropCalls {
8585
..
8686
}) => true,
8787
RuntimeCall::Balances(pallet_balances::Call::transfer { .. }) => true,
88+
RuntimeCall::Balances(pallet_balances::Call::transfer_keep_alive { .. }) => true,
8889
RuntimeCall::Assets(pallet_assets::Call::transfer { .. }) => true,
8990
_ => false,
9091
}

0 commit comments

Comments
 (0)