Skip to content

Commit befe860

Browse files
committed
feat: change app variant from 'bitcoin' to 'acre'
1 parent 4e1d0cf commit befe860

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ endif
6565

6666
# Setting to allow building variant applications
6767
VARIANT_PARAM = COIN
68-
VARIANT_VALUES = bitcoin_testnet bitcoin
68+
VARIANT_VALUES = acre_testnet acre
6969

7070
# simplify for tests
7171
ifndef COIN
72-
COIN=bitcoin_testnet
72+
COIN=acre_testnet
7373
endif
7474

7575
########################################
@@ -79,7 +79,7 @@ HAVE_APPLICATION_FLAG_DERIVE_MASTER = 1
7979
HAVE_APPLICATION_FLAG_BOLOS_SETTINGS = 1
8080
HAVE_APPLICATION_FLAG_LIBRARY = 1
8181

82-
ifeq ($(COIN),bitcoin_testnet)
82+
ifeq ($(COIN),acre_testnet)
8383
# Bitcoin testnet, no legacy support
8484
DEFINES += BIP32_PUBKEY_VERSION=0x043587CF
8585
DEFINES += BIP44_COIN_TYPE=1
@@ -89,7 +89,7 @@ ifeq ($(COIN),bitcoin_testnet)
8989
DEFINES += COIN_COINID_SHORT=\"TEST\"
9090

9191
APPNAME = "Acre Test"
92-
else ifeq ($(COIN),bitcoin)
92+
else ifeq ($(COIN),acre)
9393
# the version for performance tests automatically approves all requests
9494
# there is no reason to ever compile the mainnet app with this flag
9595
ifneq ($(AUTOAPPROVE_FOR_PERF_TESTS),0)
@@ -108,7 +108,7 @@ else ifeq ($(COIN),bitcoin)
108108

109109
else
110110
ifeq ($(filter clean,$(MAKECMDGOALS)),)
111-
$(error Unsupported COIN - use bitcoin_testnet, bitcoin)
111+
$(error Unsupported COIN - use acre_testnet, acre)
112112
endif
113113
endif
114114

0 commit comments

Comments
 (0)