From a0f7596453e8245d585d322a5da7c56770f7ddd0 Mon Sep 17 00:00:00 2001 From: Christopher Tarry Date: Mon, 4 Mar 2024 13:32:02 -0500 Subject: [PATCH] linter fix --- persist/sqlite/consensus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/persist/sqlite/consensus.go b/persist/sqlite/consensus.go index d70d6523..cf4584c7 100644 --- a/persist/sqlite/consensus.go +++ b/persist/sqlite/consensus.go @@ -368,7 +368,7 @@ func (s *Store) updateMaturedBalances(dbTxn txn, update consensusUpdate, height _, isApply := update.(*chain.ApplyUpdate) if !isApply { - height += 1 + height++ } rows, err := dbTxn.Query(`SELECT address, value