mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 20:19:08 +00:00
e54afe9222
- added a test case to demonstrate the fail scenario
11 lines
244 B
Go
11 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)
|
|
}
|