pub trait OnValBurned {
    // Required method
    fn on_val_burned(amount: u128);
}
Expand description

General trait for passing on the amount of burned VAL.

Required Methods§

source

fn on_val_burned(amount: u128)

Report amount and fractions of burned pswap at the moment of invokation.

Implementations on Foreign Types§

source§

impl OnValBurned for ()

source§

impl<T> OnValBurned for Pallet<T>where T: Config,

Implementors§

source§

impl<T> OnValBurned for ValBurnedAggregator<T>where T: ValBurnedNotifier<Balance>,