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 498311d commit 64ea2d1Copy full SHA for 64ea2d1
eth/catalyst/simulated_beacon_api.go
@@ -33,7 +33,7 @@ type api struct {
33
func (a *api) loop() {
34
var (
35
// Arbitrum: we need to make newTxs a buffered channel because by the current design of simulated beacon
36
- // it would deadlock with this cycle a.sim.Commit() -> txpool.Sync() -> subpools reset -> update feeds (newTxs is one of the recievers)
+ // it would deadlock with this cycle a.sim.Commit() -> txpool.Sync() -> subpools reset -> update feeds (newTxs is one of the receivers)
37
// Note: capacity of this channel should be the worst-case estimate of number of transactions all arriving simultaneously to the pool
38
newTxs = make(chan core.NewTxsEvent, 15)
39
sub = a.sim.eth.TxPool().SubscribeTransactions(newTxs, true)
0 commit comments