diff --git a/polkadot/runtime/common/src/impls.rs b/polkadot/runtime/common/src/impls.rs index 4af64ce6ac..abf1e07618 100644 --- a/polkadot/runtime/common/src/impls.rs +++ b/polkadot/runtime/common/src/impls.rs @@ -29,16 +29,10 @@ where ::Event: From>, { fn on_nonzero_unbalanced(amount: NegativeImbalance) { - let numeric_amount = amount.peek(); - let author = >::author(); >::resolve_creating( &>::author(), amount, ); - >::deposit_event(pallet_balances::Event::Deposit( - author, - numeric_amount, - )); } }