Skip to content

Commit

Permalink
fix: linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite committed Jan 30, 2025
1 parent dd0f82f commit 6f02240
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion x/migration/keeper/msg_server_claim_morse_upokt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@ func TestMsgServer_ClaimMorsePokt(t *testing.T) {

morseClaimMsg := types.NewMsgClaimMorsePokt(shannonDestAddr, morseDestAddr, nil)
morseClaimMsgUnsignedBz, err := proto.Marshal(morseClaimMsg)
require.NoError(t, err)

signature, err := privKey.Sign(morseClaimMsgUnsignedBz)
morseClaimMsg.MorseSignature = signature
require.NoError(t, err)

morseClaimMsg.MorseSignature = signature
resAny, err = app.RunMsg(t, morseClaimMsg)
require.NoError(t, err)

Expand Down

0 comments on commit 6f02240

Please sign in to comment.