From d5c267fd30535610184bed914e3541a57c962ff6 Mon Sep 17 00:00:00 2001 From: Pau Date: Tue, 9 Jun 2020 10:23:42 +0200 Subject: [PATCH] accounts/keystore: fix typo in error message (#21200) --- accounts/keystore/keystore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/keystore/keystore.go b/accounts/keystore/keystore.go index eb91edb5a..9d5e2cf6a 100644 --- a/accounts/keystore/keystore.go +++ b/accounts/keystore/keystore.go @@ -46,7 +46,7 @@ var ( // ErrAccountAlreadyExists is returned if an account attempted to import is // already present in the keystore. - ErrAccountAlreadyExists = errors.New("account alreaady exists") + ErrAccountAlreadyExists = errors.New("account already exists") ) // KeyStoreType is the reflect type of a keystore backend.