From 75c72aa7921dc5a9e29628be19507142acee9e33 Mon Sep 17 00:00:00 2001 From: Jeremy Schlatter Date: Fri, 4 Jan 2019 12:56:28 -0800 Subject: [PATCH] accounts/keystore: fix comment typo --- accounts/keystore/wallet.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accounts/keystore/wallet.go b/accounts/keystore/wallet.go index 758fdfe3643..60044b1f9aa 100644 --- a/accounts/keystore/wallet.go +++ b/accounts/keystore/wallet.go @@ -52,8 +52,8 @@ func (w *keystoreWallet) Status() (string, error) { // is no connection or decryption step necessary to access the list of accounts. func (w *keystoreWallet) Open(passphrase string) error { return nil } -// Close implements accounts.Wallet, but is a noop for plain wallets since is no -// meaningful open operation. +// Close implements accounts.Wallet, but is a noop for plain wallets since there +// is no meaningful open operation. func (w *keystoreWallet) Close() error { return nil } // Accounts implements accounts.Wallet, returning an account list consisting of