Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ A trustless cross-chain atomic swap protocol.

![stroemnet architecture](docs/architecture.svg)

<sub>Diagram generated by [`scripts/architecture_diagram.py`](scripts/architecture_diagram.py) — run `python3 scripts/architecture_diagram.py` to regenerate.</sub>

## Roles

Expand Down
2 changes: 1 addition & 1 deletion crates/data/src/chains/kaspa/intake/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
Expand Down
2 changes: 1 addition & 1 deletion crates/node/src/bin/stroemnetd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
Loading