From d4d9237f2e5b492f481e7c3c711b4d88638a3c11 Mon Sep 17 00:00:00 2001 From: sweexordious Date: Wed, 27 Nov 2024 16:51:46 +0100 Subject: [PATCH] chore: remove static check for deprecated method --- app/test/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/integration_test.go b/app/test/integration_test.go index c64546b48e..7ee8e08d2d 100644 --- a/app/test/integration_test.go +++ b/app/test/integration_test.go @@ -281,7 +281,7 @@ func (s *IntegrationTestSuite) TestIsEmptyBlock() { for _, h := range emptyHeights { blockRes, err := s.cctx.Client.Block(s.cctx.GoContext(), &h) require.NoError(t, err) - require.True(t, app.IsEmptyBlock(blockRes.Block.Data, blockRes.Block.Header.Version.App)) + require.True(t, app.IsEmptyBlock(blockRes.Block.Data, blockRes.Block.Header.Version.App)) //nolint:staticcheck ExtendBlockTest(t, blockRes.Block) } }