lnd.xprv/lnwallet/btcwallet/btcwallet_rpctest.go
Conner Fromknecht 1483ed119b
make: use low-scrypt to speed up unit-race
This predominately affects the lnwallet unit tests which are the bulk of
the execution time.
2020-12-10 17:42:26 -08:00

24 lines
584 B
Go

// +build rpctest lowscrypt
package btcwallet
import (
"github.com/btcsuite/btcwallet/snacl"
"github.com/btcsuite/btcwallet/waddrmgr"
)
func init() {
// Instruct waddrmgr to use the cranked down scrypt parameters when
// creating new wallet encryption keys. This will speed up the itests
// considerably.
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)
}