diff options
Diffstat (limited to 'accounts/account_manager.go')
-rw-r--r-- | accounts/account_manager.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/accounts/account_manager.go b/accounts/account_manager.go index 90fed1343..3e9fa7799 100644 --- a/accounts/account_manager.go +++ b/accounts/account_manager.go @@ -34,10 +34,12 @@ package accounts import ( crand "crypto/rand" + "errors" - "github.com/ethereum/go-ethereum/crypto" "sync" "time" + + "github.com/ethereum/go-ethereum/crypto" ) var ErrLocked = errors.New("account is locked; please request passphrase") |