Trait frame_support::traits::tokens::fungible::HandleImbalanceDrop[][src]

pub trait HandleImbalanceDrop<Balance> {
    fn handle(amount: Balance);
}
Expand description

Handler for when an imbalance gets dropped. This could handle either a credit (negative) or debt (positive) imbalance.

Required methods

Some something with the imbalance’s value which is being dropped.

Implementors