mirror of
https://github.com/muun/recovery.git
synced 2025-11-12 06:50:18 -05:00
fix vendor folder
This commit is contained in:
4
vendor/github.com/muun/libwallet/hdpublickey.go
generated
vendored
4
vendor/github.com/muun/libwallet/hdpublickey.go
generated
vendored
@@ -18,9 +18,9 @@ type HDPublicKey struct {
|
||||
|
||||
// NewHDPublicKeyFromString creates an HD pub key from a base58-encoded string
|
||||
// If the parsed key is private, it returns an error
|
||||
func NewHDPublicKeyFromString(str, path string) (*HDPublicKey, error) {
|
||||
func NewHDPublicKeyFromString(str, path string, network *Network) (*HDPublicKey, error) {
|
||||
|
||||
key, network, err := keyFromString(str)
|
||||
key, _, err := keyFromString(str)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user