From b1e9fd95ca2224400b1c937e4a05268e86390353 Mon Sep 17 00:00:00 2001 From: k Date: Tue, 5 Nov 2024 09:36:49 +0100 Subject: [PATCH] readme: typos --- README.md | 2 +- parser/src/main.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f5e52506e..d1d63ac23 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Please open an issue if you want to add another instance ## Endpoints -> If you running locally, you can replace `http://kibo.money` by `https://localhost:3110` +> If you running locally, you can replace `https://kibo.money` by `http://localhost:3110` - [/](https://kibo.money/): Website - [/api](https://kibo.money/api): A JSON with all available datasets, with their respective id and endpoint, better viewed in a Firefox based browser diff --git a/parser/src/main.rs b/parser/src/main.rs index 52b77bae1..39426ca5e 100644 --- a/parser/src/main.rs +++ b/parser/src/main.rs @@ -25,7 +25,8 @@ fn main() -> color_eyre::Result<()> { sleep(Duration::from_secs(delay)) } - log("Waiting for new block..."); + log("Waiting for a new block...\n"); + while block_count == rpc.get_blockchain_info().unwrap().blocks as usize { sleep(Duration::from_secs(1)) }