Merge ElementsProject/elements#1536: liquidv1: allow enabling -acceptunlimitedissuances

56eb713150 Log status of ELIP 203 (Pablo Greco)
d8052363f3 liquidv1: allow enabling -acceptunlimitedissuances (Pablo Greco)

Pull request description:

  Preparation for the activation of  [ELIP 203](https://github.com/ElementsProject/ELIPs/blob/main/elip-0203.mediawiki), we need to move from a hardcoded false to an optionin liquidv1

ACKs for top commit:
  tomt1664:
    Tested ACK 56eb713150
  delta1:
    ACK 56eb713150; tested locally, changes allow acceptunlimitedissuances to be configurable on liquidv1 chain

Tree-SHA512: 1671634af6f3dfeaf48c9c6f9aa8598fed1eddc6a279b7bbbfd6d7d7062b89d85a60ec561560308d55ef4e80790db760b8dd20c19167db248d13d41570893314
This commit is contained in:
merge-script 2026-03-12 08:28:00 +02:00 committed by Tom Trevethan
parent a2734e9a6d
commit 94c1f1eaa1
No known key found for this signature in database
2 changed files with 2 additions and 3 deletions

View file

@ -1402,7 +1402,7 @@ public:
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);
@ -1762,8 +1762,6 @@ public:
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;