mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +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.
12 lines
297 B
Go
12 lines
297 B
Go
package macaroons
|
|
|
|
import "github.com/btcsuite/btcwallet/snacl"
|
|
|
|
var (
|
|
// Below are the default scrypt parameters that are used when creating
|
|
// the encryption key for the macaroon database with snacl.NewSecretKey.
|
|
scryptN = snacl.DefaultN
|
|
scryptR = snacl.DefaultR
|
|
scryptP = snacl.DefaultP
|
|
)
|