mirror of
https://git.ghostchain.io/proxmio/ghost-node.git
synced 2025-12-27 03:09:56 +00:00
12 lines
251 B
Rust
12 lines
251 B
Rust
use frame_support::weights::Weight;
|
|
|
|
pub trait WeightInfo {
|
|
fn slow_clap() -> Weight;
|
|
fn self_applause()-> Weight;
|
|
}
|
|
|
|
impl WeightInfo for () {
|
|
fn slow_clap()-> Weight { Weight::zero() }
|
|
fn self_applause()-> Weight { Weight::zero() }
|
|
}
|