mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
walletunlocker: use fast scrypt options for unit tests
This commit is contained in:
parent
29ece5fe24
commit
3f45fb3781
@ -10,6 +10,8 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/btcsuite/btcd/chaincfg"
|
||||
"github.com/btcsuite/btcwallet/snacl"
|
||||
"github.com/btcsuite/btcwallet/waddrmgr"
|
||||
"github.com/btcsuite/btcwallet/wallet"
|
||||
"github.com/lightningnetwork/lnd/aezeed"
|
||||
"github.com/lightningnetwork/lnd/keychain"
|
||||
@ -35,6 +37,19 @@ var (
|
||||
)
|
||||
|
||||
func createTestWallet(t *testing.T, dir string, netParams *chaincfg.Params) {
|
||||
// Instruct waddrmgr to use the cranked down scrypt parameters when
|
||||
// creating new wallet encryption keys.
|
||||
fastScrypt := waddrmgr.FastScryptOptions
|
||||
keyGen := func(passphrase *[]byte, config *waddrmgr.ScryptOptions) (
|
||||
*snacl.SecretKey, error) {
|
||||
|
||||
return snacl.NewSecretKey(
|
||||
passphrase, fastScrypt.N, fastScrypt.R, fastScrypt.P,
|
||||
)
|
||||
}
|
||||
waddrmgr.SetSecretKeyGen(keyGen)
|
||||
|
||||
// Create a new test wallet that uses fast scrypt as KDF.
|
||||
netDir := btcwallet.NetworkDir(dir, netParams)
|
||||
loader := wallet.NewLoader(netParams, netDir, true, 0)
|
||||
_, err := loader.CreateNewWallet(
|
||||
|
Loading…
Reference in New Issue
Block a user