Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
BUGFIX: Fix Errorf call in schema/manager.go.
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-smith committed Jul 25, 2018
1 parent b455511 commit f0ca9a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ func NewMnemonic() (string, error) {
}
mnemonic, err := bip39.NewMnemonic(entropy)
if err != nil {
return "", fmt.Errorf("generating mnemonic:", err.Error())
return "", fmt.Errorf("generating mnemonic: %s", err.Error())
}
return mnemonic, nil
}
Expand Down

0 comments on commit f0ca9a5

Please sign in to comment.