mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
edba938996
This commit adds a new build tag `integration` and removes the old tag `rpctest` for clarity. Multiple unnecessary usages of `build !rpctest` is also removed.
14 lines
306 B
Go
14 lines
306 B
Go
//go:build integration
|
|
|
|
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
|
|
}
|