Skip to content

Commit

Permalink
Fix self derive method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanleecode committed Jul 17, 2019
1 parent 9180977 commit 3ec2f46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hdwallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func (w *Wallet) Derive(path accounts.DerivationPath, pin bool) (accounts.Accoun
// user used previously (based on the chain state), but ones that he/she did not
// explicitly pin to the wallet manually. To avoid chain head monitoring, self
// derivation only runs during account listing (and even then throttled).
func (w *Wallet) SelfDerive(base accounts.DerivationPath, chain ethereum.ChainStateReader) {
func (w *Wallet) SelfDerive(base []accounts.DerivationPath, chain ethereum.ChainStateReader) {
// TODO: self derivation
}

Expand Down

0 comments on commit 3ec2f46

Please sign in to comment.