remove prints from ethbackend (#6755)

This commit is contained in:
hexoscott 2023-02-01 10:58:32 +00:00 committed by GitHub
parent aaec53857f
commit d9937b5628
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()
}