From 097a702739661aa83943d638752dd167ef0b53db Mon Sep 17 00:00:00 2001 From: Public Profile Date: Thu, 2 Mar 2023 11:36:39 -0800 Subject: [PATCH] [fix] add -s to curl --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 527bd55a1..607e38dbc 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,6 @@ Sync speed depends on your L1 node, as the majority of the chain is derived from ``` echo Latest synced block behind by: \ $((($( date +%s )-\ -$( curl -d '{"id":0,"jsonrpc":"2.0","method":"optimism_syncStatus"}' -H "Content-Type: application/json" http://localhost:7545 | +$( curl -s -d '{"id":0,"jsonrpc":"2.0","method":"optimism_syncStatus"}' -H "Content-Type: application/json" http://localhost:7545 | jq -r .result.unsafe_l2.timestamp))/60)) minutes ```