diff --git a/Cargo.lock b/Cargo.lock index f65d1eed..bf4f01ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10277,6 +10277,7 @@ dependencies = [ "pezpallet-example-mbm", "pezpallet-example-tasks", "pezsp-debug-derive", + "pezsp-runtime", "primitive-types 0.13.1", "rand 0.8.5", "rand_pcg", diff --git a/bizinikiwi/bin/node/runtime/Cargo.toml b/bizinikiwi/bin/node/runtime/Cargo.toml index 68afaa49..65b4c0e8 100644 --- a/bizinikiwi/bin/node/runtime/Cargo.toml +++ b/bizinikiwi/bin/node/runtime/Cargo.toml @@ -37,6 +37,7 @@ primitive-types = { features = [ ], workspace = true } pezkuwi-sdk = { features = ["runtime-full", "tuples-96"], workspace = true } +pezsp-runtime = { workspace = true } # shared code between runtime and node pez-node-primitives = { workspace = true } @@ -58,6 +59,7 @@ std = [ "pezpallet-example-mbm/std", "pezpallet-example-tasks/std", "pezkuwi-sdk/std", + "pezsp-runtime/std", "primitive-types/std", "rand?/std", "scale-info/std", diff --git a/bizinikiwi/bin/node/runtime/src/lib.rs b/bizinikiwi/bin/node/runtime/src/lib.rs index 2c503646..e8054fa3 100644 --- a/bizinikiwi/bin/node/runtime/src/lib.rs +++ b/bizinikiwi/bin/node/runtime/src/lib.rs @@ -2866,6 +2866,9 @@ mod runtime { pub type MultiAssetBounties = pezpallet_multi_asset_bounties::Pezpallet; } +// Re-export all pallet types from the runtime module +pub use runtime::*; + /// The address format for describing accounts. pub type Address = pezsp_runtime::MultiAddress; /// Block header type as expected by this runtime.