Skip to content

Commit

Permalink
fix: lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCrypto-Bear committed Dec 12, 2023
1 parent 3437177 commit 2fa6a01
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x/auth/client/cli/tx_multisign.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ func makeMultiSignCmd() func(cmd *cobra.Command, args []string) (err error) {
}

for _, sig := range extractedSignatues {
multisig.AddSignatureV2(multisigSig, sig, multisigPub.GetPubKeys())
if err := multisig.AddSignatureV2(multisigSig, sig, multisigPub.GetPubKeys()); err != nil {
return err
}
}

// read each signature and add it to the multisig if valid
Expand Down

0 comments on commit 2fa6a01

Please sign in to comment.