diff --git a/substrate/node/runtime/src/lib.rs b/substrate/node/runtime/src/lib.rs index b1e4065b5f..e17e0085f0 100644 --- a/substrate/node/runtime/src/lib.rs +++ b/substrate/node/runtime/src/lib.rs @@ -237,8 +237,8 @@ impl staking::Trait for Runtime { type CurrencyToVote = CurrencyToVoteHandler; type OnRewardMinted = Treasury; type Event = Event; - type Slash = (); - type Reward = (); + type Slash = Treasury; // send the slashed funds to the treasury. + type Reward = (); // rewards are minted from the void type SessionsPerEra = SessionsPerEra; type BondingDuration = BondingDuration; type SessionInterface = Self;