mirror of
https://git.ghostchain.io/proxmio/ghost-node.git
synced 2025-12-27 19:29:56 +00:00
19 lines
540 B
Rust
19 lines
540 B
Rust
|
|
use frame_support::weights::Weight;
|
||
|
|
|
||
|
|
pub trait WeightInfo {
|
||
|
|
fn slow_clap(claps_len: u32, companions_len: u32) -> Weight;
|
||
|
|
fn propose_companion() -> Weight;
|
||
|
|
fn release_companion() -> Weight;
|
||
|
|
fn kill_companion() -> Weight;
|
||
|
|
}
|
||
|
|
|
||
|
|
impl WeightInfo for () {
|
||
|
|
fn slow_clap(
|
||
|
|
_claps_len: u32,
|
||
|
|
_companions_len: u32,
|
||
|
|
) -> Weight { Weight::zero() }
|
||
|
|
fn propose_companion() -> Weight { Weight::zero() }
|
||
|
|
fn release_companion() -> Weight { Weight::zero() }
|
||
|
|
fn kill_companion() -> Weight { Weight::zero() }
|
||
|
|
}
|