mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-10 07:37:05 +01:00
4bbb86ae30
Move final helpers out of test-cli/ Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
15 lines
320 B
Bash
15 lines
320 B
Bash
# Sourced by other scripts
|
|
|
|
STYLE=bitcoin
|
|
DATADIR=/tmp/bitcoin-lightning
|
|
CLI="bitcoin-cli -datadir=$DATADIR"
|
|
REGTESTDIR=regtest
|
|
DAEMON="bitcoind -datadir=$DATADIR"
|
|
if grep ^FEATURES ../Makefile | cut -d'#' -f1 | grep -q BIP68; then
|
|
SEQ_ENFORCEMENT=true
|
|
else
|
|
SEQ_ENFORCEMENT=false
|
|
fi
|
|
|
|
#PREFIX="valgrind --vgdb-error=1"
|