mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
docs: fix typos across documentation (#17102)
Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -67,7 +67,7 @@ There are many tables within the node, all used to store different types of data
|
||||
|
||||
## Database
|
||||
|
||||
Reth's database design revolves around it's main [Database trait](https://github.com/paradigmxyz/reth/blob/bf9cac7571f018fec581fe3647862dab527aeafb/crates/storage/db-api/src/database.rs#L8-L52), which implements the database's functionality across many types. Let's take a quick look at the `Database` trait and how it works.
|
||||
Reth's database design revolves around its main [Database trait](https://github.com/paradigmxyz/reth/blob/bf9cac7571f018fec581fe3647862dab527aeafb/crates/storage/db-api/src/database.rs#L8-L52), which implements the database's functionality across many types. Let's take a quick look at the `Database` trait and how it works.
|
||||
|
||||
[File: crates/storage/db-api/src/database.rs](https://github.com/paradigmxyz/reth/blob/bf9cac7571f018fec581fe3647862dab527aeafb/crates/storage/db-api/src/database.rs#L8-L52)
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# eth-wire
|
||||
|
||||
The `eth-wire` crate provides abstractions over the [``RLPx``](https://github.com/ethereum/devp2p/blob/master/rlpx.md) and
|
||||
The `eth-wire` crate provides abstractions over the [`RLPx`](https://github.com/ethereum/devp2p/blob/master/rlpx.md) and
|
||||
[Eth wire](https://github.com/ethereum/devp2p/blob/master/caps/eth.md) protocols.
|
||||
|
||||
This crate can be thought of as having 2 components:
|
||||
@@ -334,7 +334,7 @@ impl<S, E> Sink<EthMessage> for EthStream<S> {
|
||||
}
|
||||
```
|
||||
## Unauthed streams
|
||||
For a session to be established, peers in the Ethereum network must first exchange a `Hello` message in the ``RLPx`` layer and then a
|
||||
For a session to be established, peers in the Ethereum network must first exchange a `Hello` message in the `RLPx` layer and then a
|
||||
`Status` message in the eth-wire layer.
|
||||
|
||||
To perform these, reth has special `Unauthed` versions of streams described above.
|
||||
|
||||
Reference in New Issue
Block a user