File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ import (
4343 "github.com/offchainlabs/nitro/daprovider/data_streaming"
4444 "github.com/offchainlabs/nitro/execution"
4545 executionrpcclient "github.com/offchainlabs/nitro/execution/rpcclient"
46- "github.com/offchainlabs/nitro/restrictedaddr"
4746 "github.com/offchainlabs/nitro/solgen/go/bridgegen"
4847 "github.com/offchainlabs/nitro/solgen/go/precompilesgen"
4948 "github.com/offchainlabs/nitro/staker"
Original file line number Diff line number Diff line change @@ -516,7 +516,9 @@ func (n *ExecutionNode) Start(ctxIn context.Context) error {
516516 }
517517 n .bulkBlockMetadataFetcher .Start (ctx )
518518
519- n .RestrictedAddrService .Start (ctx )
519+ if n .RestrictedAddrService != nil {
520+ n .RestrictedAddrService .Start (ctx )
521+ }
520522 return nil
521523}
522524
You can’t perform that action at this time.
0 commit comments