From 4be8cfe42cd7d4c810ac23ee472af23950705475 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 5bceccc6e..d162af7c6 100644 --- a/accounts/keystore/keystore.go +++ b/accounts/keystore/keystore.go @@ -45,7 +45,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.