Trait frame_support::weights::PaysFee[][src]

pub trait PaysFee<T> {
    fn pays_fee(&self, _target: T) -> Pays;
}
Expand description

Indicates if dispatch function should pay fees or not. If set to Pays::No, the block resource limits are applied, yet no fee is deducted.

Required methods

Implementations on Foreign Types

Implementors