Skip to content

Commit f1ac5d8

Browse files
authored
Fix typo (#2081)
1 parent 43c90e3 commit f1ac5d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/cli.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,9 @@ func (c WasmdCli) AddKey(name string) string {
278278
}
279279

280280
// AddKeyFromSeed recovers the key from given seed and add it to default keyring. Returns address
281-
func (c WasmdCli) AddKeyFromSeed(name, mnemoic string) string {
281+
func (c WasmdCli) AddKeyFromSeed(name, mnemonic string) string {
282282
cmd := c.withKeyringFlags("keys", "add", name, "--recover")
283-
out, _ := c.runWithInput(cmd, strings.NewReader(mnemoic))
283+
out, _ := c.runWithInput(cmd, strings.NewReader(mnemonic))
284284
addr := gjson.Get(out, "address").String()
285285
require.NotEmpty(c.t, addr, "got %q", out)
286286
return addr

0 commit comments

Comments
 (0)