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 bfc878e commit 1f32d89Copy full SHA for 1f32d89
eth/protocols/eth/dispatcher.go
@@ -230,6 +230,11 @@ func (p *Peer) dispatcher() {
230
}
231
// Stop tracking the request
232
delete(pending, cancelOp.id)
233
+
234
+ // Not sure if the request is about the receipt, but removing it anyway
235
+ delete(p.receiptBuffer, cancelOp.id)
236
+ delete(p.requestedReceipts, cancelOp.id)
237
238
cancelOp.fail <- nil
239
240
case resOp := <-p.resDispatch:
0 commit comments