Fix missing space in error message in account list (#8009)

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>
This commit is contained in:
Mohamed Mansour
2020-12-02 05:02:59 -08:00
committed by GitHub
parent f9c696ed54
commit 9d2fe80140

View File

@@ -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",
)