Skip to content

Commit

Permalink
docs: fix typo in specs/src/cat_pool.md (#4061)
Browse files Browse the repository at this point in the history
## Overview

This PR fixes a typo in the `specs/src/cat_pool.md` file, changing
`transacton` to `transaction`. This is important for maintaining
accurate and professional documentation, ensuring clarity and preventing
confusion for users and developers.
  • Loading branch information
sky-coderay authored Dec 4, 2024
1 parent 904ba75 commit 6447542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/src/cat_pool.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ A node in the protocol has two distinct modes: "broadcast" and "request/response
A `SeenTx` is broadcasted to ALL nodes upon receiving a "new" transaction from a peer. The transaction pool does not need to track every unique inbound transaction, therefore "new" is identified as:

- The node does not currently have the transaction
- The node did not recently reject the transacton or has recently seen the same transaction committed (subject to the size of the cache)
- The node did not recently reject the transaction or has recently seen the same transaction committed (subject to the size of the cache)
- The node did not recently evict the transaction (subject to the size of the cache)

Given this criteria, it is feasible, yet unlikely that a node receives two `SeenTx` messages from the same peer for the same transaction.
Expand Down

0 comments on commit 6447542

Please sign in to comment.