merge new functionality which will be used for benchmarking purposes

Signed-off-by: Uncle Stinky <uncle.stinky@ghostchain.io>
This commit is contained in:
Uncle Stinky
2025-06-04 15:40:13 +03:00
5 changed files with 24 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "ghost-traits"
version = "0.3.20"
version = "0.3.21"
license.workspace = true
authors.workspace = true
edition.workspace = true

View File

@@ -38,4 +38,5 @@ pub trait NetworkDataMutateHandler<Network, Balance>: NetworkDataInspectHandler<
) -> Result<(Balance, Balance), ()>;
fn accumulate_commission(commission: &Balance) -> Result<Balance, ()>;
fn nullify_commission();
fn trigger_nullification();
}