mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Change features default behavior in Env (RIPD-1460):
Enable all supported amendments in Env by default. Rename `features()` to `with_features()` and add `all_features_except()` to support feature subsets in Env. Refactor internal feature handling based on a bitset.
This commit is contained in:
@@ -47,7 +47,7 @@ public:
|
||||
testStepLimit(std::initializer_list<uint256> fs)
|
||||
{
|
||||
using namespace jtx;
|
||||
Env env(*this, features(fs));
|
||||
Env env(*this, with_features(fs));
|
||||
auto const xrpMax = XRP(100000000000);
|
||||
auto const gw = Account("gateway");
|
||||
auto const USD = gw["USD"];
|
||||
@@ -81,7 +81,7 @@ public:
|
||||
testCrossingLimit(std::initializer_list<uint256> fs)
|
||||
{
|
||||
using namespace jtx;
|
||||
Env env(*this, features(fs));
|
||||
Env env(*this, with_features(fs));
|
||||
auto const xrpMax = XRP(100000000000);
|
||||
auto const gw = Account("gateway");
|
||||
auto const USD = gw["USD"];
|
||||
@@ -110,7 +110,7 @@ public:
|
||||
testStepAndCrossingLimit(std::initializer_list<uint256> fs)
|
||||
{
|
||||
using namespace jtx;
|
||||
Env env(*this, features(fs));
|
||||
Env env(*this, with_features(fs));
|
||||
auto const xrpMax = XRP(100000000000);
|
||||
auto const gw = Account("gateway");
|
||||
auto const USD = gw["USD"];
|
||||
|
||||
Reference in New Issue
Block a user