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 d60dac6 commit 94a7254Copy full SHA for 94a7254
arbitrum/backend.go
@@ -130,12 +130,12 @@ func (b *Backend) updateFilterMapsHeads() {
130
blockProcCh := make(chan bool, 10)
131
sub := b.arb.BlockChain().SubscribeChainEvent(headEventCh)
132
if sub == nil {
133
- log.Error("arbitrum Backend: failed subscrubing to Head Event")
+ log.Error("arbitrum Backend: failed subscribing to Head Event")
134
return
135
}
136
sub2 := b.arb.BlockChain().SubscribeBlockProcessingEvent(blockProcCh)
137
if sub2 == nil {
138
- log.Error("arbitrum Backend: failed subscrubing to Block Processing Event")
+ log.Error("arbitrum Backend: failed subscribing to Block Processing Event")
139
sub.Unsubscribe()
140
141
0 commit comments