mirror of
https://github.com/muun/recovery.git
synced 2025-11-11 06:20:16 -05:00
fix vendor folder
This commit is contained in:
4
vendor/github.com/muun/libwallet/hdprivatekey.go
generated
vendored
4
vendor/github.com/muun/libwallet/hdprivatekey.go
generated
vendored
@@ -39,9 +39,9 @@ func NewHDPrivateKeyFromBytes(rawKey, chainCode []byte, network *Network) (*HDPr
|
||||
|
||||
// NewHDPrivateKeyFromString creates an HD priv key from a base58-encoded string
|
||||
// If the parsed key is public, it returns an error
|
||||
func NewHDPrivateKeyFromString(str, path string) (*HDPrivateKey, error) {
|
||||
func NewHDPrivateKeyFromString(str, path string, network *Network) (*HDPrivateKey, error) {
|
||||
|
||||
key, network, err := keyFromString(str)
|
||||
key, _, err := keyFromString(str)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user