diff options
Diffstat (limited to 'accounts/keystore/wallet.go')
-rw-r--r-- | accounts/keystore/wallet.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/accounts/keystore/wallet.go b/accounts/keystore/wallet.go index 1b36b6dff..498067d49 100644 --- a/accounts/keystore/wallet.go +++ b/accounts/keystore/wallet.go @@ -77,7 +77,8 @@ func (w *keystoreWallet) Derive(path accounts.DerivationPath, pin bool) (account // SelfDerive implements accounts.Wallet, but is a noop for plain wallets since // there is no notion of hierarchical account derivation for plain keystore accounts. -func (w *keystoreWallet) SelfDerive(base accounts.DerivationPath, chain ethereum.ChainStateReader) {} +func (w *keystoreWallet) SelfDerive(bases []accounts.DerivationPath, chain ethereum.ChainStateReader) { +} // signHash attempts to sign the given hash with // the given account. If the wallet does not wrap this particular account, an |