MrBoec/pallets/claims/src/weights.rs

10 lines
160 B
Rust
Raw Permalink Normal View History

use frame_support::weights::Weight;
pub trait WeightInfo {
fn claim() -> Weight;
}
impl WeightInfo for () {
fn claim() -> Weight { Weight::zero() }
}