You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
320 B
15 lines
320 B
10 years ago
|
# Sourced by other scripts
|
||
10 years ago
|
|
||
9 years ago
|
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
|
||
9 years ago
|
SEQ_ENFORCEMENT=true
|
||
9 years ago
|
else
|
||
9 years ago
|
SEQ_ENFORCEMENT=false
|
||
10 years ago
|
fi
|
||
10 years ago
|
|
||
|
#PREFIX="valgrind --vgdb-error=1"
|