We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43c90e3 commit f1ac5d8Copy full SHA for f1ac5d8
tests/system/cli.go
@@ -278,9 +278,9 @@ func (c WasmdCli) AddKey(name string) string {
278
}
279
280
// AddKeyFromSeed recovers the key from given seed and add it to default keyring. Returns address
281
-func (c WasmdCli) AddKeyFromSeed(name, mnemoic string) string {
+func (c WasmdCli) AddKeyFromSeed(name, mnemonic string) string {
282
cmd := c.withKeyringFlags("keys", "add", name, "--recover")
283
- out, _ := c.runWithInput(cmd, strings.NewReader(mnemoic))
+ out, _ := c.runWithInput(cmd, strings.NewReader(mnemonic))
284
addr := gjson.Get(out, "address").String()
285
require.NotEmpty(c.t, addr, "got %q", out)
286
return addr
0 commit comments