Browse Source

Update FirstRPC retry count to 20

pull/56/head
Duke 12 months ago
parent
commit
108f89a6ea
  1. 2
      common/common.go

2
common/common.go

@ -260,7 +260,7 @@ func FirstRPC() {
break
}
retryCount++
if retryCount > 10 {
if retryCount > 20 {
Log.WithFields(logrus.Fields{
"timeouts": retryCount,
}).Fatal("unable to issue getblockchaininfo RPC call to hushd node")

Loading…
Cancel
Save