Skip to content

Commit

Permalink
Fix missing space in error message in account list (#8009)
Browse files Browse the repository at this point in the history
When validating account list, there was a missing space. This fixes that nitpick.

Co-authored-by: terence tsao <terence@prysmaticlabs.com>
Co-authored-by: Victor Farazdagi <simple.square@gmail.com>
  • Loading branch information
3 people committed Dec 2, 2020
1 parent f9c696e commit 9d2fe80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validator/accounts/wallet/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const (
var (
// ErrNoWalletFound signifies there was no wallet directory found on-disk.
ErrNoWalletFound = errors.New(
"no wallet found. You can create a new wallet with validator wallet create." +
"no wallet found. You can create a new wallet with validator wallet create. " +
"If you already did, perhaps you created a wallet in a custom directory, which you can specify using " +
"--wallet-dir=/path/to/my/wallet",
)
Expand Down

0 comments on commit 9d2fe80

Please sign in to comment.