Skip to content

Commit

Permalink
remove prints from ethbackend (#6755)
Browse files Browse the repository at this point in the history
  • Loading branch information
hexoscott authored Feb 1, 2023
1 parent aaec538 commit d9937b5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ethdb/privateapi/ethbackend.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,11 +279,9 @@ func (s *EthBackendServer) stageLoopIsBusy() bool {
select {
case <-time.After(1 * time.Second):
// timed out so just call done
fmt.Println("hexo: timed out")
wg.Done()
case <-waiter:
// state is now waiting so we're not busy
fmt.Println("hexo: finished waiting")
busy = false
wg.Done()
}
Expand Down

0 comments on commit d9937b5

Please sign in to comment.