aezeed: use fast scrypt options in itest

This commit is contained in:
Oliver Gugger 2020-01-24 11:03:02 +01:00
parent 8623bfac22
commit 466294ed4c
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -0,0 +1,13 @@
// +build rpctest
package aezeed
import "github.com/btcsuite/btcwallet/waddrmgr"
func init() {
// For the purposes of our itest, we'll crank down the scrypt params a
// bit.
scryptN = waddrmgr.FastScryptOptions.N
scryptR = waddrmgr.FastScryptOptions.R
scryptP = waddrmgr.FastScryptOptions.P
}