global: readmes

This commit is contained in:
nym21
2025-12-18 23:05:43 +01:00
parent 9ad3acbdf9
commit 57749da919
19 changed files with 44 additions and 28 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ Iterate over Bitcoin blocks with a simple API that automatically chooses between
## Core API
```rust
```rust,ignore
let blocks = Blocks::new(&rpc_client, &reader);
// Various range specifications
@@ -27,7 +27,7 @@ for block in blocks.after(Some(last_known_hash))? { ... }
## Source Modes
```rust
```rust,ignore
// Auto-select (default)
let blocks = Blocks::new(&client, &reader);