mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-10 04:21:33 +00:00
12 lines
244 B
Go
12 lines
244 B
Go
|
package hd
|
||
|
|
||
|
import (
|
||
|
"github.com/btcsuite/btcd/chaincfg"
|
||
|
"github.com/btcsuite/btcutil/hdkeychain"
|
||
|
)
|
||
|
|
||
|
// NewExtendedKey
|
||
|
func NewExtendedKey() (*hdkeychain.ExtendedKey, error) {
|
||
|
return hdkeychain.NewMaster([]byte{}, &chaincfg.MainNetParams)
|
||
|
}
|