mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Inject Config:
* Use dependency injections instead * Remove deprecated fee interfaces
This commit is contained in:
committed by
Vinnie Falco
parent
c7b3153958
commit
fa796a2eb5
@@ -36,7 +36,7 @@ class SkipList_test : public beast::unit_test::suite
|
||||
std::vector<std::shared_ptr<Ledger>> history;
|
||||
{
|
||||
jtx::Env env(*this);
|
||||
Config const config;
|
||||
Config config;
|
||||
auto prev =
|
||||
std::make_shared<Ledger>(create_genesis, config, env.app().family());
|
||||
history.push_back(prev);
|
||||
|
||||
@@ -148,7 +148,7 @@ class View_test
|
||||
{
|
||||
using namespace jtx;
|
||||
Env env(*this);
|
||||
Config const config;
|
||||
Config config;
|
||||
std::shared_ptr<Ledger const> const genesis =
|
||||
std::make_shared<Ledger>(
|
||||
create_genesis, config, env.app().family());
|
||||
@@ -412,7 +412,7 @@ class View_test
|
||||
{
|
||||
using namespace jtx;
|
||||
Env env(*this);
|
||||
Config const config;
|
||||
Config config;
|
||||
std::shared_ptr<Ledger const> const genesis =
|
||||
std::make_shared<Ledger> (
|
||||
create_genesis, config, env.app().family());
|
||||
@@ -532,7 +532,7 @@ class View_test
|
||||
// erase the item, apply.
|
||||
{
|
||||
Env env(*this);
|
||||
Config const config;
|
||||
Config config;
|
||||
std::shared_ptr<Ledger const> const genesis =
|
||||
std::make_shared<Ledger>(
|
||||
create_genesis, config, env.app().family());
|
||||
|
||||
Reference in New Issue
Block a user