mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Supported::No for featureDID
This commit is contained in:
@@ -47,7 +47,7 @@ XRPL_FEATURE(PriceOracle, Supported::yes, VoteBehavior::DefaultNo
|
|||||||
XRPL_FIX (InnerObjTemplate, Supported::yes, VoteBehavior::DefaultNo)
|
XRPL_FIX (InnerObjTemplate, Supported::yes, VoteBehavior::DefaultNo)
|
||||||
XRPL_FIX (NFTokenReserve, Supported::yes, VoteBehavior::DefaultNo)
|
XRPL_FIX (NFTokenReserve, Supported::yes, VoteBehavior::DefaultNo)
|
||||||
XRPL_FIX (FillOrKill, Supported::yes, VoteBehavior::DefaultNo)
|
XRPL_FIX (FillOrKill, Supported::yes, VoteBehavior::DefaultNo)
|
||||||
XRPL_FEATURE(DID, Supported::yes, VoteBehavior::DefaultNo)
|
XRPL_FEATURE(DID, Supported::no, VoteBehavior::DefaultNo)
|
||||||
XRPL_FIX (DisallowIncomingV1, Supported::yes, VoteBehavior::DefaultNo)
|
XRPL_FIX (DisallowIncomingV1, Supported::yes, VoteBehavior::DefaultNo)
|
||||||
XRPL_FEATURE(XChainBridge, Supported::no, VoteBehavior::DefaultNo)
|
XRPL_FEATURE(XChainBridge, Supported::no, VoteBehavior::DefaultNo)
|
||||||
XRPL_FEATURE(AMM, Supported::yes, VoteBehavior::DefaultNo)
|
XRPL_FEATURE(AMM, Supported::yes, VoteBehavior::DefaultNo)
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ public:
|
|||||||
|
|
||||||
testcase("Basics");
|
testcase("Basics");
|
||||||
|
|
||||||
Env env(*this, features);
|
Env env(*this, features | featureDID);
|
||||||
Account const alice("alice");
|
Account const alice("alice");
|
||||||
Account const becky("becky");
|
Account const becky("becky");
|
||||||
Account const carol("carol");
|
Account const carol("carol");
|
||||||
|
|||||||
@@ -386,7 +386,7 @@ struct DID_test : public beast::unit_test::suite
|
|||||||
run() override
|
run() override
|
||||||
{
|
{
|
||||||
using namespace test::jtx;
|
using namespace test::jtx;
|
||||||
FeatureBitset const all{supported_amendments()};
|
FeatureBitset const all{supported_amendments() | featureDID};
|
||||||
testEnabled(all);
|
testEnabled(all);
|
||||||
testAccountReserve(all);
|
testAccountReserve(all);
|
||||||
testSetInvalid(all);
|
testSetInvalid(all);
|
||||||
|
|||||||
@@ -576,7 +576,9 @@ public:
|
|||||||
auto const USD = gw["USD"];
|
auto const USD = gw["USD"];
|
||||||
|
|
||||||
Env env(
|
Env env(
|
||||||
*this, features | featureXChainBridge | featurePermissionedDomains);
|
*this,
|
||||||
|
features | featureXChainBridge | featureDID |
|
||||||
|
featurePermissionedDomains);
|
||||||
|
|
||||||
// Make a lambda we can use to get "account_objects" easily.
|
// Make a lambda we can use to get "account_objects" easily.
|
||||||
auto acctObjs = [&env](
|
auto acctObjs = [&env](
|
||||||
|
|||||||
@@ -2792,7 +2792,7 @@ public:
|
|||||||
testcase("ledger_entry Request DID");
|
testcase("ledger_entry Request DID");
|
||||||
using namespace test::jtx;
|
using namespace test::jtx;
|
||||||
using namespace std::literals::chrono_literals;
|
using namespace std::literals::chrono_literals;
|
||||||
Env env{*this};
|
Env env{*this, supported_amendments() | featureDID};
|
||||||
Account const alice{"alice"};
|
Account const alice{"alice"};
|
||||||
|
|
||||||
env.fund(XRP(10000), alice);
|
env.fund(XRP(10000), alice);
|
||||||
|
|||||||
Reference in New Issue
Block a user