Fix lint error.

This commit is contained in:
Arijit Das 2021-12-09 14:54:18 +05:30
parent 20653ac0d4
commit 8a3fba7970

View File

@ -50,8 +50,8 @@ import (
const (
chainEventChanSize = 20000
genesisBlockNumber = 0
defaultRetryLimit = 3 // default retry limit once deadlock is detected.
deadlockDetected = "deadlock detected" // 40P01 https://www.postgresql.org/docs/current/errcodes-appendix.html
defaultRetryLimit = 3 // default retry limit once deadlock is detected.
deadlockDetected = "deadlock detected" // 40P01 https://www.postgresql.org/docs/current/errcodes-appendix.html
)
var writeLoopParams = Params{
@ -712,4 +712,4 @@ func (sds *Service) writeStateDiffWithRetry(block *types.Block, parentRoot commo
break
}
return err
}
}