lnwallet/btcwallet: use fast scrypt options in itest

This commit is contained in:
Oliver Gugger 2020-01-17 23:19:27 +01:00
parent 847d27f8a6
commit 95a6796778
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -0,0 +1,23 @@
// +build rpctest
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)
}