From 8a3fba7970a48ddf16ebc39ec56492ac74fb64ea Mon Sep 17 00:00:00 2001 From: Arijit Das Date: Thu, 9 Dec 2021 14:54:18 +0530 Subject: [PATCH] Fix lint error. --- statediff/service.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/statediff/service.go b/statediff/service.go index 63a0e38e1..6411ba68e 100644 --- a/statediff/service.go +++ b/statediff/service.go @@ -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 -} \ No newline at end of file +}