Skip to content

Commit

Permalink
Add missing method
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanleecode committed Jul 17, 2019
1 parent e1a8432 commit 9180977
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hdwallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,11 @@ func (w *Wallet) SignText(account Account, text []byte) ([]byte, error) {
return nil, errors.New("not implemented")
}

// SignTextWithPassphrase is not implemented
func (w *Wallet) SignTextWithPassphrase(account Account, passphrase string, hash []byte) ([]byte, error) {
return nil, errors.New("not implemented")
}

// ParseDerivationPath parses the derivation path in string format into []uint32
func ParseDerivationPath(path string) (accounts.DerivationPath, error) {
return accounts.ParseDerivationPath(path)
Expand Down

0 comments on commit 9180977

Please sign in to comment.