fix: Switch Permissioned Domain to Supported::yes (#5287)

Switch Permissioned Domain feature's supported flag from Supported::no to Supported::yes for it to be votable.
This commit is contained in:
Olek
2025-02-15 10:08:25 -05:00
committed by tequ
parent d7480c6474
commit 41405706b0
2 changed files with 3 additions and 2 deletions

View File

@@ -31,7 +31,7 @@
XRPL_FIX (FrozenLPTokenTransfer, Supported::yes, VoteBehavior::DefaultNo)
XRPL_FEATURE(DeepFreeze, Supported::yes, VoteBehavior::DefaultNo)
XRPL_FEATURE(PermissionedDomains, Supported::no, VoteBehavior::DefaultNo)
XRPL_FEATURE(PermissionedDomains, Supported::yes, VoteBehavior::DefaultNo)
XRPL_FEATURE(DynamicNFT, Supported::yes, VoteBehavior::DefaultNo)
XRPL_FEATURE(Credentials, Supported::yes, VoteBehavior::DefaultNo)
XRPL_FEATURE(AMMClawback, Supported::yes, VoteBehavior::DefaultNo)

View File

@@ -54,7 +54,8 @@ exceptionExpected(Env& env, Json::Value const& jv)
class PermissionedDomains_test : public beast::unit_test::suite
{
FeatureBitset withoutFeature_{supported_amendments()};
FeatureBitset withoutFeature_{
supported_amendments() - featurePermissionedDomains};
FeatureBitset withFeature_{
supported_amendments() //
| featurePermissionedDomains | featureCredentials};