mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-08 14:50:26 +01:00
454a3867e5
The latest version of the BIP doesn't use inversion, but does use bitshifts. It also uncovered a bug in the test scripts: the block timestamps creep forward when we generate large numbers of blocks (UpdateTime insists it be > GetMedianTimePast() so it's valid). We need to take this into account when waiting for the median to move (reduced it from 60 to 30 seconds, since that adds about 14 seconds). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
24 lines
570 B
Bash
24 lines
570 B
Bash
# Sourced by other scripts
|
|
|
|
if grep -q ^FEATURES.*ALPHA ../Makefile; then
|
|
STYLE=alpha
|
|
DATADIR=$HOME/.alpha
|
|
REGTESTDIR=alpharegtest
|
|
CLI="alpha-cli -datadir=$DATADIR -regtest -testnet=0"
|
|
DAEMON="alphad -datadir=$DATADIR"
|
|
SEQ_ENFORCEMENT=true
|
|
else
|
|
STYLE=bitcoin
|
|
CLI="bitcoin-cli -regtest"
|
|
DATADIR=$HOME/.bitcoin
|
|
REGTESTDIR=regtest
|
|
DAEMON="bitcoind -regtest"
|
|
if grep ^FEATURES ../Makefile | cut -d'#' -f1 | grep -q BIP68; then
|
|
SEQ_ENFORCEMENT=true
|
|
else
|
|
SEQ_ENFORCEMENT=false
|
|
fi
|
|
fi
|
|
|
|
#PREFIX="valgrind --vgdb-error=1"
|