Make BIP68 and CSV support the default.

This has gone upstream into bitcoind, so enable it.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2016-04-11 16:35:29 +09:30
parent 40b14981fd
commit f8796c261b
1 changed files with 2 additions and 2 deletions

View File

@ -9,9 +9,9 @@ CCANDIR := ccan
# Bitcoin uses DER for signatures (Add BIP68 & HAS_CSV if it's supported)
BITCOIN_FEATURES := \
-DHAS_BIP68=0 \
-DHAS_BIP68=1 \
-DHAS_CLTV=1 \
-DHAS_CSV=0 \
-DHAS_CSV=1 \
-DSCRIPTS_USE_DER=1
FEATURES := $(BITCOIN_FEATURES)