diff --git a/clients/cli/README.md b/clients/cli/README.md index e86802c..be8b5b4 100644 --- a/clients/cli/README.md +++ b/clients/cli/README.md @@ -5,7 +5,7 @@ Command line interface (CLI) for accessing the Nexus Network. Highest-performanc ## Quick start ``` -curl https://cli.nexus.xyz/install.sh | sh +curl https://cli.nexus.xyz/ | sh ``` If you do not already have Rust, you will be prompted to install it. @@ -20,4 +20,4 @@ add `NONINTERACTIVE=1` before `sh`. ## Known issues Currently only proving is supported. Submitting programs to the network is in private beta. -To request an API key, [contact us](https://forms.gle/183D9bcDHUdbxCV5A). +To request an API key, contact us at growth@nexus.xyz. diff --git a/clients/cli/src/prover.rs b/clients/cli/src/prover.rs index 13c92f6..b11002e 100644 --- a/clients/cli/src/prover.rs +++ b/clients/cli/src/prover.rs @@ -309,13 +309,13 @@ async fn main() { proof: Some(proof::Proof::NovaBytes(buf)), })), }; - client - .send(Message::Binary(response.encode_to_vec())) - .await - .unwrap(); let duration = SystemTime::now().duration_since(start_time).unwrap(); let proof_cycles_hertz = cycles_proven * 1000 / duration.as_millis(); let proof_cycles_per_minute = cycles_proven * 60 * 1000 / duration.as_millis(); + client + .send(Message::Binary(response.encode_to_vec())) + .await + .unwrap(); track( "proof".into(), format!("Proof sent! You proved at {} Hz.", proof_cycles_hertz),