diff --git a/template/node/Cargo.toml b/template/node/Cargo.toml index 7e075cf9..cd498e4d 100644 --- a/template/node/Cargo.toml +++ b/template/node/Cargo.toml @@ -20,7 +20,7 @@ path = "src/main.rs" # Local nimbus-consensus = { workspace = true } nimbus-primitives = { workspace = true } -parachain-template-runtime = { path = "../runtime" } +moonkit-template-runtime = { path = "../runtime" } # Crates.io clap = { workspace = true, features = [ "derive" ] } @@ -95,5 +95,5 @@ polkadot-service = { workspace = true } substrate-build-script-utils = { workspace = true } [features] -runtime-benchmarks = [ "parachain-template-runtime/runtime-benchmarks", "polkadot-service/runtime-benchmarks" ] -try-runtime = [ "parachain-template-runtime/try-runtime" ] +runtime-benchmarks = [ "moonkit-template-runtime/runtime-benchmarks", "polkadot-service/runtime-benchmarks" ] +try-runtime = [ "moonkit-template-runtime/try-runtime" ] diff --git a/template/runtime/Cargo.toml b/template/runtime/Cargo.toml index 40bedd8a..fc371d75 100644 --- a/template/runtime/Cargo.toml +++ b/template/runtime/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "parachain-template-runtime" +name = "moonkit-template-runtime" authors = [ "Anonymous" ] description = "A FRAME-based Substrate Runtime, that demonstrates the Nimbus consensus framework." edition = "2021"