mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 12:14:21 +01:00
* Update protos * Update handlers * Support macaroons and TLS * Add arkd cli * Minor fixes * Update deps * Fixes * Update makefile * Fixes * Fix * Fix * Fix * Remove trusted onboarding from client * Completely remove trusted onboarding * Fix compose files and add --no-macaroon flag to arkd cli * Lint * Remove e2e for trusted onboarding * Add sleep time
13 lines
419 B
Go
13 lines
419 B
Go
package macaroons
|
|
|
|
import "github.com/btcsuite/btcwallet/waddrmgr"
|
|
|
|
func init() {
|
|
// Below are the reduced scrypt parameters that are used when creating
|
|
// the encryption key for the macaroon database with snacl.NewSecretKey.
|
|
// We use very low values for our itest/rpctest to speed things up.
|
|
scryptN = waddrmgr.FastScryptOptions.N
|
|
scryptR = waddrmgr.FastScryptOptions.R
|
|
scryptP = waddrmgr.FastScryptOptions.P
|
|
}
|