Skip to content
Closed
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
2 changes: 1 addition & 1 deletion crates/net/network/src/transactions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ impl<Pool: TransactionPool, N: NetworkPrimitives> TransactionsManager<Pool, N> {
//
// known txns have already been successfully fetched or received over gossip.
//
// most hashes will be filtered out here since this the mempool protocol is a gossip
// most hashes will be filtered out here since the mempool protocol is a gossip
// protocol, healthy peers will send many of the same hashes.
//
let hashes_count_pre_pool_filter = partially_valid_msg.len();
Expand Down
2 changes: 1 addition & 1 deletion crates/prune/types/src/target.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ impl PruneModes {
if let Some(PruneMode::Distance(limit)) = prune_mode {
// check if distance exceeds the configured limit
if distance > *limit {
// but only if have haven't pruned the target yet, if we dont have a checkpoint
// but only if we haven't pruned the target yet, if we don't have a checkpoint
// yet, it's fully unpruned yet
let pruned_height = checkpoint
.and_then(|checkpoint| checkpoint.1.block_number)
Expand Down
2 changes: 1 addition & 1 deletion crates/stages/api/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub enum StageError {
/// Database is ahead of static file data.
#[error("missing static file data for block number: {number}", number = block.block.number)]
MissingStaticFileData {
/// Starting block with missing data.
/// Starting block with missing data.
block: Box<BlockWithParent>,
/// Static File segment
segment: StaticFileSegment,
Expand Down
Loading