ghost-node/pallets/weaver/src/weights.rs
Uncle Stretch d83ee59508
let the EXODUS begin...
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2026-08-29 14:48:50 +03:00

24 lines
498 B
Rust

use frame_support::weights::Weight;
pub trait WeightInfo {
fn extend_warp() -> Weight;
fn weave_weft() -> Weight;
fn pull_evm_thread() -> Weight;
fn pull_utxo_thread() -> Weight;
}
impl WeightInfo for () {
fn extend_warp() -> Weight {
Default::default()
}
fn weave_weft() -> Weight {
Default::default()
}
fn pull_evm_thread() -> Weight {
Default::default()
}
fn pull_utxo_thread() -> Weight {
Default::default()
}
}