From 558eaf8b61b57e8157201aff49cf10a322f75896 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Kripalani?= Date: Thu, 9 Mar 2023 14:59:56 +0000 Subject: [PATCH] fix lint. --- itests/eth_transactions_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/itests/eth_transactions_test.go b/itests/eth_transactions_test.go index 5cc829907..9d6c742dc 100644 --- a/itests/eth_transactions_test.go +++ b/itests/eth_transactions_test.go @@ -323,8 +323,8 @@ func TestGetBlockByNumber(t *testing.T) { defer cancel() ch, err := client.ChainNotify(tctx) require.NoError(t, err) - hc := <-ch // current - hc = <-ch // wait for next block + <-ch // current + hc := <-ch // wait for next block require.Equal(t, store.HCApply, hc[0].Type) afterNullHeight := hc[0].Val.Height()