diff --git a/src/main.rs b/src/main.rs index eb1db6b76c..035c1867bd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,6 +21,10 @@ use structopt::StructOpt; use tokio::runtime; fn main() -> Result<()> { + if num_cpus::get() < 16 { + eprintln!("\nWARNING - Your machine must have at least 16-cores to run a node.\n"); + } + // Parse the provided arguments. let node = Node::from_args();