diff --git a/state-chain/pallets/cf-funding/src/lib.rs b/state-chain/pallets/cf-funding/src/lib.rs index 91c4d73eac..1c183ada7c 100644 --- a/state-chain/pallets/cf-funding/src/lib.rs +++ b/state-chain/pallets/cf-funding/src/lib.rs @@ -838,5 +838,7 @@ impl OnKilledAccount for Pallet { fn on_killed_account(account_id: &T::AccountId) { ActiveBidder::::remove(account_id); RestrictedBalances::::remove(account_id); + BoundExecutorAddress::::remove(account_id); + BoundRedeemAddress::::remove(account_id); } }