From e32279a6d01ac4648f0f0e3c23da1673a9bcb504 Mon Sep 17 00:00:00 2001 From: hugehope Date: Tue, 18 Feb 2025 16:06:03 +0800 Subject: [PATCH] refactor: use a more straightforward return value Signed-off-by: hugehope --- tests/common/gov.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/gov.go b/tests/common/gov.go index 34433c2..6660eb4 100644 --- a/tests/common/gov.go +++ b/tests/common/gov.go @@ -77,5 +77,5 @@ func (s *NetworkTestSuite) BroadcastMessages(ctx context.Context, chain *cosmos. //chainA, chainB := s.GetChains() //err = test.WaitForBlocks(ctx, 2, chainA, chainB) - return resp, err + return resp, nil }