mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 16:56:48 +00:00
refactor: Use more scoped enums (#7086)
This commit is contained in:
@@ -69,7 +69,7 @@ struct SEnv
|
||||
std::unique_ptr<Config> config,
|
||||
FeatureBitset features,
|
||||
std::unique_ptr<Logs> logs = nullptr,
|
||||
beast::severities::Severity thresh = beast::severities::KError)
|
||||
beast::Severity thresh = beast::Severity::Error)
|
||||
: env(s, std::move(config), features, std::move(logs), thresh)
|
||||
{
|
||||
}
|
||||
@@ -2333,7 +2333,7 @@ struct XChain_test : public beast::unit_test::Suite, public jtx::XChainBridgeObj
|
||||
.minAccountCreate = XRP(20), // minAccountCreate
|
||||
.quorum = 4, // quorum
|
||||
.signers = signers,
|
||||
.jvb = json::NullValue};
|
||||
.jvb = json::ValueType::Null};
|
||||
|
||||
xrpB.initBridge(mcEnv, scEnv);
|
||||
|
||||
@@ -4514,7 +4514,7 @@ public:
|
||||
.minAccountCreate = XRP(20),
|
||||
.quorum = quorum,
|
||||
.signers = signers,
|
||||
.jvb = json::NullValue};
|
||||
.jvb = json::ValueType::Null};
|
||||
|
||||
initBridge(xrpB);
|
||||
|
||||
@@ -4529,7 +4529,7 @@ public:
|
||||
.minAccountCreate = XRP(20),
|
||||
.quorum = quorum,
|
||||
.signers = signers,
|
||||
.jvb = json::NullValue};
|
||||
.jvb = json::ValueType::Null};
|
||||
|
||||
initBridge(usdB);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user