diff --git a/README.md b/README.md index 66c3943..6012b76 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,6 @@ A trustless cross-chain atomic swap protocol. ![stroemnet architecture](docs/architecture.svg) -Diagram generated by [`scripts/architecture_diagram.py`](scripts/architecture_diagram.py) — run `python3 scripts/architecture_diagram.py` to regenerate. ## Roles diff --git a/crates/data/src/chains/kaspa/intake/read.rs b/crates/data/src/chains/kaspa/intake/read.rs index f940382..b3cbbfb 100644 --- a/crates/data/src/chains/kaspa/intake/read.rs +++ b/crates/data/src/chains/kaspa/intake/read.rs @@ -73,7 +73,7 @@ impl Intake { let mut iterations: u32 = 0; loop { iterations += 1; - /// Retrieve the blocks and transactions + // Retrieve the blocks and transactions let resp = retry_timed("get_blocks", || { client.get_blocks(Some(page_low), true, true) }) diff --git a/crates/node/src/bin/stroemnetd.rs b/crates/node/src/bin/stroemnetd.rs index 2078bc5..4eeb0bc 100644 --- a/crates/node/src/bin/stroemnetd.rs +++ b/crates/node/src/bin/stroemnetd.rs @@ -25,7 +25,7 @@ mod daemon { let _ = rustls::crypto::ring::default_provider().install_default(); tracing_subscriber::fmt::init(); - /// Read the confguration for the node + // Read the confguration for the node let config_path = std::env::args() .nth(1) .unwrap_or_else(|| "stroemnet.toml".to_string());