Skip to content

Commit 27c2fb6

Browse files
committed
Merge #1554: Enable elip203 by default in liquidv1 and liquidtestnet
60a97d1 Enable ELIP203 by default in liquidv1 (Pablo Greco) 7577eb9 Enable ELIP203 by default in liquidtestnet (Pablo Greco) Pull request description: ACKs for top commit: tomt1664: ACK 60a97d1 delta1: ACK 60a97d1 Tree-SHA512: 4bd3840f6c09db5100d58f7ca6d97be6923b0f7fbcad3855c6bb0d2139e8d44e0baab0aaffd00a1cd4f2073d5bb5abdfdbe16a249f68fd2213972531512d3153
2 parents 75499e7 + 60a97d1 commit 27c2fb6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/chainparams.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,6 +1108,7 @@ class CLiquidTestNetParams : public CCustomParams {
11081108
default_signblockscript = "51210217e403ddb181872c32a0cd468c710040b2f53d8cac69f18dad07985ee37e9a7151ae";
11091109
create_discount_ct = false;
11101110
accept_discount_ct = true;
1111+
accept_unlimited_issuances = true;
11111112
UpdateFromArgs(args);
11121113
multi_data_permitted = true;
11131114
SetGenesisBlock();
@@ -1220,7 +1221,7 @@ class CLiquidV1Params : public CChainParams {
12201221

12211222
enforce_pak = true;
12221223

1223-
accept_unlimited_issuances = args.GetBoolArg("-acceptunlimitedissuances", false);
1224+
accept_unlimited_issuances = args.GetBoolArg("-acceptunlimitedissuances", true);
12241225

12251226
multi_data_permitted = true;
12261227
create_discount_ct = args.GetBoolArg("-creatediscountct", false);

0 commit comments

Comments
 (0)