From 9c5dff2554af073063d97636bf0a571c9c443640 Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Tue, 14 Jan 2025 10:56:11 +0800 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 09dd02cc98..bc8b8d980a 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.