diff --git a/src/ripple/protocol/impl/Feature.cpp b/src/ripple/protocol/impl/Feature.cpp index 4b4f3587e..65d7e722c 100644 --- a/src/ripple/protocol/impl/Feature.cpp +++ b/src/ripple/protocol/impl/Feature.cpp @@ -453,8 +453,8 @@ REGISTER_FEATURE(BalanceRewards, Supported::yes, DefaultVote::yes REGISTER_FIX (fixRemoveNFTokenAutoTrustLine, Supported::yes, DefaultVote::yes); REGISTER_FEATURE(ImmediateOfferKilled, Supported::yes, DefaultVote::no); REGISTER_FEATURE(DisallowIncoming, Supported::yes, DefaultVote::no); -REGISTER_FEATURE(PaychanAndEscrowForTokens, Supported::yes, DefaultVote::yes); -REGISTER_FEATURE(URIToken, Supported::yes, DefaultVote::yes); +REGISTER_FEATURE(PaychanAndEscrowForTokens, Supported::yes, DefaultVote::no); +REGISTER_FEATURE(URIToken, Supported::yes, DefaultVote::no); // The following amendments have been active for at least two years. Their // pre-amendment code has been removed and the identifiers are deprecated. diff --git a/src/test/rpc/LedgerRPC_test.cpp b/src/test/rpc/LedgerRPC_test.cpp index a77e39e9a..131c584b2 100644 --- a/src/test/rpc/LedgerRPC_test.cpp +++ b/src/test/rpc/LedgerRPC_test.cpp @@ -1250,7 +1250,7 @@ class LedgerRPC_test : public beast::unit_test::suite { // Request the uritoken using its index. Json::Value jvParams; - jvParams[jss::uri_token] = to_string(uritokenIndex); + jvParams[jss::URIToken] = to_string(uritokenIndex); jvParams[jss::ledger_hash] = ledgerHash; Json::Value const jrr = env.rpc("json", "ledger_entry", to_string(jvParams))[jss::result]; BEAST_EXPECT(jrr[jss::node][sfOwner.jsonName] == alice.human()); @@ -1260,7 +1260,7 @@ class LedgerRPC_test : public beast::unit_test::suite { // Request an index that is not a uritoken. Json::Value jvParams; - jvParams[jss::uri_token] = ledgerHash; + jvParams[jss::URIToken] = ledgerHash; jvParams[jss::ledger_hash] = ledgerHash; Json::Value const jrr = env.rpc( "json", "ledger_entry", to_string(jvParams))[jss::result];