Skip to content

Commit

Permalink
feat: fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ckartik committed Jul 5, 2024
1 parent a220daa commit 816dd33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions p2p/pkg/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func NewNode(opts *Options) (*Node, error) {
monitor := txmonitor.New(
opts.KeySigner.GetAddress(),
contractRPC,
txmonitor.NewEVMHelper(contractRPC.Client()),
txmonitor.NewEVMHelperWithLogger(contractRPC.Client(), opts.Logger.With("component", "txmonitor")),
store,
opts.Logger.With("component", "txmonitor"),
1024,
Expand Down Expand Up @@ -337,7 +337,7 @@ func NewNode(opts *Options) (*Node, error) {
evtMgr,
store,
commitmentDA,
txmonitor.NewEVMHelper(contractRPC.Client()),
txmonitor.NewEVMHelperWithLogger(contractRPC.Client(), opts.Logger.With("component", "evm_helper")),
optsGetter,
opts.Logger.With("component", "tracker"),
)
Expand Down

0 comments on commit 816dd33

Please sign in to comment.