Skip to content

Commit

Permalink
chores: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
daeMOn63 committed Nov 12, 2021
1 parent 492e70c commit a1b9f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/auth/ante/sigverify.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
Expand Down

0 comments on commit a1b9f22

Please sign in to comment.