From f9d89dd5f247edf86ea8399678d2407b6e232b9c Mon Sep 17 00:00:00 2001 From: healthykim Date: Mon, 13 Jul 2026 15:41:02 +0200 Subject: [PATCH] eth/protocols: rename handler from 71 to 72 --- eth/protocols/eth/handler.go | 2 +- eth/protocols/eth/handlers.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/protocols/eth/handler.go b/eth/protocols/eth/handler.go index a4ec1435f1..dd78d560a5 100644 --- a/eth/protocols/eth/handler.go +++ b/eth/protocols/eth/handler.go @@ -234,7 +234,7 @@ var eth71 = map[uint64]msgHandler{ var eth72 = map[uint64]msgHandler{ TransactionsMsg: handleTransactions, - NewPooledTransactionHashesMsg: handleNewPooledTransactionHashes71, + NewPooledTransactionHashesMsg: handleNewPooledTransactionHashes72, GetBlockHeadersMsg: handleGetBlockHeaders, BlockHeadersMsg: handleBlockHeaders, GetBlockBodiesMsg: handleGetBlockBodies, diff --git a/eth/protocols/eth/handlers.go b/eth/protocols/eth/handlers.go index d191587812..ce2bc876c5 100644 --- a/eth/protocols/eth/handlers.go +++ b/eth/protocols/eth/handlers.go @@ -583,7 +583,7 @@ func handleNewPooledTransactionHashes(backend Backend, msg Decoder, peer *Peer) return backend.Handle(peer, ann) } -func handleNewPooledTransactionHashes71(backend Backend, msg Decoder, peer *Peer) error { +func handleNewPooledTransactionHashes72(backend Backend, msg Decoder, peer *Peer) error { // New transaction announcement arrived, make sure we have // a valid and fresh chain to handle them if !backend.AcceptTxs() {