From a1b9f22f93dfa8742d83f4505ece09410d2149ed Mon Sep 17 00:00:00 2001 From: Flavien Binet Date: Fri, 12 Nov 2021 18:15:45 +0100 Subject: [PATCH] chores: fix lint --- x/auth/ante/sigverify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/auth/ante/sigverify.go b/x/auth/ante/sigverify.go index f71ba6259d..5ef9ffbfae 100644 --- a/x/auth/ante/sigverify.go +++ b/x/auth/ante/sigverify.go @@ -343,7 +343,7 @@ func (spvd SetPopValidDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate switch pk.(type) { case *bls12381.PubKey, *secp256k1.PubKey, *ed25519.PubKey: - if !acc.GetPopValid() { + if !acc.GetPopValid() { if err := acc.SetPopValid(true); err != nil { return ctx, sdkerrors.Wrap(sdkerrors.ErrInvalidPop, err.Error()) }