Skip to content

Fix blockchain_data guide link #142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 27, 2022
Merged
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
4 changes: 2 additions & 2 deletions docs/tutorials/build_a_node_in_rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,11 @@ impl Filter for YourTxFilter {
let filter = YourTxFilter();
```

**Implementation notes:** see the [Blockchain Data](/blockchain_data.md) guide for more info
**Implementation notes:** see the [Blockchain Data](/blockchain_data/introduction.md) guide for more info

**Dependencies:** *none*

**References:** [`Filter` docs](https://docs.rs/lightning/*/lightning/chain/trait.Filter.html), [Blockchain Data guide](/blockchain_data.md)
**References:** [`Filter` docs](https://docs.rs/lightning/*/lightning/chain/trait.Filter.html), [Blockchain Data guide](/blockchain_data/introduction.md)

### Step 5. Initialize the `ChainMonitor`
**What it's used for:** tracking one or more `ChannelMonitor`s and using them to monitor the chain for lighting transactions that are relevant to our node, and broadcasting transactions if need be
Expand Down