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)) }