mirror of
https://git.ghostchain.io/proxmio/ghost-node.git
synced 2025-12-27 11:19:57 +00:00
10 lines
160 B
Rust
10 lines
160 B
Rust
|
|
use frame_support::weights::Weight;
|
||
|
|
|
||
|
|
pub trait WeightInfo {
|
||
|
|
fn claim() -> Weight;
|
||
|
|
}
|
||
|
|
|
||
|
|
impl WeightInfo for () {
|
||
|
|
fn claim() -> Weight { Weight::zero() }
|
||
|
|
}
|