Skip to content

Commit

Permalink
update genesis cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
augustbleeds committed Jul 17, 2023
1 parent cd67375 commit ef4316e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cosmos/client/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func SetupLocalCosmosNode(t *testing.T, chainID string) ([]Account, string, stri
require.NoError(t, err4)
require.Equal(t, expAcctAddr, address)
// Give it 100 luna
out2, err2 := exec.Command("wasmd", "add-genesis-account", k.Address, "100000000ucosm", "--home", testdir).Output() //nolint:gosec
out2, err2 := exec.Command("wasmd", "genesis", "add-genesis-account", k.Address, "100000000ucosm", "--home", testdir).Output() //nolint:gosec
require.NoError(t, err2, string(out2))
accounts = append(accounts, Account{
Name: account,
Expand Down

0 comments on commit ef4316e

Please sign in to comment.