Skip to content

Commit

Permalink
fix morpheus
Browse files Browse the repository at this point in the history
  • Loading branch information
wlawt committed Apr 24, 2024
1 parent a9fb336 commit 1c80740
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/morpheusvm/cmd/morpheus-cli/cmd/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var transferCmd = &cobra.Command{
}

// Generate transaction
_, _, err = sendAndWait(ctx, nil, &actions.Transfer{
_, _, err = sendAndWait(ctx, &actions.Transfer{
To: recipient,
Value: amount,
}, cli, bcli, ws, factory, true)
Expand Down
2 changes: 1 addition & 1 deletion examples/morpheusvm/cmd/morpheus-cli/cmd/spam.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ var runSpamCmd = &cobra.Command{
if err != nil {
return err
}
_, _, err = sendAndWait(ictx, nil, &actions.Transfer{
_, _, err = sendAndWait(ictx, &actions.Transfer{
To: priv.Address,
Value: count, // prevent duplicate txs
}, cli, bclient, wclient, factory, false)
Expand Down

0 comments on commit 1c80740

Please sign in to comment.