mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-03 10:46:58 +01:00
14 lines
320 B
Bash
14 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"
|