File tree 2 files changed +3
-3
lines changed
crates/subspace-node/src/commands/run
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -400,7 +400,7 @@ pub(super) fn create_consensus_chain_configuration(
400
400
401
401
let consensus_chain_config = SubstrateConfiguration {
402
402
impl_name : env ! ( "CARGO_PKG_NAME" ) . to_string ( ) ,
403
- impl_version : env ! ( "CARGO_PKG_VERSION " ) . to_string ( ) ,
403
+ impl_version : env ! ( "SUBSTRATE_CLI_IMPL_VERSION " ) . into ( ) ,
404
404
farmer,
405
405
base_path : base_path. clone ( ) ,
406
406
transaction_pool,
Original file line number Diff line number Diff line change @@ -307,8 +307,8 @@ pub(super) fn create_domain_configuration(
307
307
} ;
308
308
309
309
let domain_config = SubstrateConfiguration {
310
- impl_name : env ! ( "CARGO_PKG_NAME" ) . to_string ( ) ,
311
- impl_version : env ! ( "CARGO_PKG_VERSION" ) . to_string ( ) ,
310
+ impl_name : consensus_chain_configuration . impl_name . clone ( ) ,
311
+ impl_version : consensus_chain_configuration . impl_version . clone ( ) ,
312
312
operator : operator_id. is_some ( ) ,
313
313
base_path : base_path. clone ( ) ,
314
314
transaction_pool,
You can’t perform that action at this time.
0 commit comments