We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf3dd1 commit fc58320Copy full SHA for fc58320
eth/protocols/eth/broadcast.go
@@ -152,7 +152,7 @@ func (p *Peer) announceTransactions() {
152
if tx := p.txpool.Get(queue[count]); tx != nil {
153
pending = append(pending, queue[count])
154
pendingTypes = append(pendingTypes, tx.Type())
155
- pendingSizes = append(pendingSizes, 1+uint32(tx.Size())) // txsize += 1 because of txtype byte
+ pendingSizes = append(pendingSizes, uint32(tx.Size()))
156
size += common.HashLength
157
}
158
0 commit comments