From d8052363f3ea8f7c37c5a57dc10c3852ad15962a Mon Sep 17 00:00:00 2001 From: Pablo Greco Date: Wed, 25 Feb 2026 02:51:55 -0800 Subject: [PATCH 1/2] liquidv1: allow enabling -acceptunlimitedissuances --- src/chainparams.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 1eb76a4cb70..567f667fef9 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -1220,7 +1220,7 @@ class CLiquidV1Params : public CChainParams { enforce_pak = true; - accept_unlimited_issuances = false; + accept_unlimited_issuances = args.GetBoolArg("-acceptunlimitedissuances", false); multi_data_permitted = true; create_discount_ct = args.GetBoolArg("-creatediscountct", false); @@ -1585,8 +1585,6 @@ class CLiquidV1TestParams : public CLiquidV1Params { enforce_pak = args.GetBoolArg("-enforce_pak", enforce_pak); - accept_unlimited_issuances = args.GetBoolArg("-acceptunlimitedissuances", accept_unlimited_issuances); - multi_data_permitted = args.GetBoolArg("-multi_data_permitted", multi_data_permitted); create_discount_ct = args.GetBoolArg("-creatediscountct", create_discount_ct); accept_discount_ct = args.GetBoolArg("-acceptdiscountct", accept_discount_ct) || create_discount_ct; From 56eb713150d70e46d4d09b0d00c26237b655994d Mon Sep 17 00:00:00 2001 From: Pablo Greco Date: Tue, 10 Mar 2026 07:42:52 -0700 Subject: [PATCH 2/2] Log status of ELIP 203 --- src/init.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/init.cpp b/src/init.cpp index d8dd3dca73d..5bb74b4426d 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1547,6 +1547,7 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info) } LogPrintf("* Using %.1f MiB for chain state database\n", cache_sizes.coins_db * (1.0 / 1024 / 1024)); LogPrintf("* Using %.1f MiB for in-memory UTXO set (plus up to %.1f MiB of unused mempool space)\n", cache_sizes.coins * (1.0 / 1024 / 1024), nMempoolSizeMax * (1.0 / 1024 / 1024)); + LogPrintf("ELIP 203 is%s active\n", (chainparams.GetAcceptUnlimitedIssuances())?"":" not"); bool fLoaded = false; while (!fLoaded && !ShutdownRequested()) {