You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(cli): run the benchmark off the tokio runtime
The benchmark is synchronous, CPU-bound work: dispatching it from inside
the async main parked a tokio worker thread for the whole run. Split the
startup preamble into a synchronous main that returns before the runtime
starts, and move the node path into run_node, which now carries the
#[tokio::main] attributes.
0 commit comments