diff --git a/crates/testing-utils/src/node_proc.rs b/crates/testing-utils/src/node_proc.rs index 9fd860329..fade79357 100644 --- a/crates/testing-utils/src/node_proc.rs +++ b/crates/testing-utils/src/node_proc.rs @@ -129,6 +129,7 @@ impl TestNodeProcessBuilder { { let mut cmd = process::Command::new(&self.node_path); cmd.env("RUST_LOG", "error").arg(&self.chain_type).arg("--tmp"); + cmd.arg("--unsafe-force-node-key-generation"); if self.force_authoring { cmd.arg("--force-authoring"); }