Skip to content

Commit b05eb5f

Browse files
authored
fix(txpool): correct propagate field name in Debug output (#19278)
1 parent 1c5c709 commit b05eb5f

File tree

1 file changed

+1
-1
lines changed
  • crates/transaction-pool/src/validate

1 file changed

+1
-1
lines changed

crates/transaction-pool/src/validate/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ impl<T: PoolTransaction> fmt::Debug for ValidPoolTransaction<T> {
515515
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
516516
f.debug_struct("ValidPoolTransaction")
517517
.field("id", &self.transaction_id)
518-
.field("pragate", &self.propagate)
518+
.field("propagate", &self.propagate)
519519
.field("origin", &self.origin)
520520
.field("hash", self.transaction.hash())
521521
.field("tx", &self.transaction)

0 commit comments

Comments
 (0)