mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 15:41:02 +00:00
Test deployments fixes (#2057)
* Fix node_impl_version error ``` error: unexpected argument '--node-impl-version' found tip: to pass '--node-impl-version' as a value, use '-- --node-impl-version' Usage: rialto-bridge-node prepare-worker <SOCKET_PATH> <NODE_IMPL_VERSION> For more information, try '--help'. ``` * Fix rialto-parachain not producing blocks We must have at least 2 validators for each collator
This commit is contained in:
committed by
Bastian Köcher
parent
13ecaf1eca
commit
25220c2ca4
@@ -164,7 +164,10 @@ pub fn run() -> sc_cli::Result<()> {
|
||||
builder.with_colors(false);
|
||||
let _ = builder.init();
|
||||
|
||||
polkadot_node_core_pvf::prepare_worker_entrypoint(&cmd.socket_path, None);
|
||||
polkadot_node_core_pvf::prepare_worker_entrypoint(
|
||||
&cmd.socket_path,
|
||||
Some(&cmd.node_impl_version),
|
||||
);
|
||||
Ok(())
|
||||
},
|
||||
Some(crate::cli::Subcommand::PvfExecuteWorker(cmd)) => {
|
||||
@@ -172,7 +175,10 @@ pub fn run() -> sc_cli::Result<()> {
|
||||
builder.with_colors(false);
|
||||
let _ = builder.init();
|
||||
|
||||
polkadot_node_core_pvf::execute_worker_entrypoint(&cmd.socket_path, None);
|
||||
polkadot_node_core_pvf::execute_worker_entrypoint(
|
||||
&cmd.socket_path,
|
||||
Some(&cmd.node_impl_version),
|
||||
);
|
||||
Ok(())
|
||||
},
|
||||
None => {
|
||||
|
||||
Reference in New Issue
Block a user