Skip to content

Commit

Permalink
fix: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Alok committed Jul 9, 2024
1 parent 4a306bc commit 183b847
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion oracle/pkg/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ func NewNode(opts *Options) (*Node, error) {
return nil, err
}

fmt.Println("USING L1 RPC URL", opts.L1RPCUrl)
l1Client, err := ethclient.Dial(opts.L1RPCUrl)
if err != nil {
nd.logger.Error("Failed to connect to the L1 Ethereum client", "error", err)
Expand Down
2 changes: 1 addition & 1 deletion oracle/pkg/updater/updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func NewUpdater(
oracle: oracle,
receiptBatcher: receiptBatcher,
metrics: newMetrics(),
openedCmts: make(chan *preconf.PreconfcommitmentstoreCommitmentStored, 200),
openedCmts: make(chan *preconf.PreconfcommitmentstoreCommitmentStored),
encryptedCmts: make(chan *preconf.PreconfcommitmentstoreEncryptedCommitmentStored),
}, nil
}
Expand Down
2 changes: 1 addition & 1 deletion p2p/pkg/preconfirmation/tracker/tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func NewTracker(
preconfContract: preconfContract,
receiptGetter: receiptGetter,
optsGetter: optsGetter,
newL1Blocks: make(chan *blocktracker.BlocktrackerNewL1Block, 10),
newL1Blocks: make(chan *blocktracker.BlocktrackerNewL1Block),
enryptedCmts: make(chan *preconfcommstore.PreconfcommitmentstoreEncryptedCommitmentStored),
commitments: make(chan *preconfcommstore.PreconfcommitmentstoreCommitmentStored),
winners: make(map[int64]*blocktracker.BlocktrackerNewL1Block),
Expand Down
1 change: 1 addition & 0 deletions p2p/pkg/rpc/bidder/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ func (s *Service) CancelAutoDeposit(
}
return
}
s.logger.Info("waiting for windows to be in the past before withdrawing", "currentWindow", currentWindow, "windows", windows)
}
}()
return &bidderapiv1.CancelAutoDepositResponse{}, nil
Expand Down

0 comments on commit 183b847

Please sign in to comment.