Make the node version independent of the crate version (#1495)

This commit is contained in:
Bastian Köcher
2023-09-12 14:12:10 +02:00
committed by GitHub
parent fea7bcd625
commit e005aef59b
6 changed files with 15 additions and 6 deletions
+1 -1
View File
@@ -19,5 +19,5 @@
polkadot_node_core_pvf_common::decl_worker_main!(
"execute-worker",
polkadot_node_core_pvf_execute_worker::worker_entrypoint,
env!("SUBSTRATE_CLI_IMPL_VERSION")
polkadot_cli::NODE_VERSION,
);
+1 -1
View File
@@ -19,5 +19,5 @@
polkadot_node_core_pvf_common::decl_worker_main!(
"prepare-worker",
polkadot_node_core_pvf_prepare_worker::worker_entrypoint,
env!("SUBSTRATE_CLI_IMPL_VERSION")
polkadot_cli::NODE_VERSION,
);