diff --git a/src/tests/libxrpl/CMakeLists.txt b/src/tests/libxrpl/CMakeLists.txt index 4192bcd464..581ba88446 100644 --- a/src/tests/libxrpl/CMakeLists.txt +++ b/src/tests/libxrpl/CMakeLists.txt @@ -30,12 +30,12 @@ target_link_libraries(xrpl.test.json PRIVATE xrpl.imports.test) add_dependencies(xrpl.tests xrpl.test.json) # Network unit tests are currently not supported on Windows -if(NOT WIN32) - xrpl_add_test(net) - target_link_libraries(xrpl.test.net PRIVATE xrpl.imports.test) - add_dependencies(xrpl.tests xrpl.test.net) -endif() +if (NOT WIN32) + xrpl_add_test(net) + target_link_libraries(xrpl.test.net PRIVATE xrpl.imports.test) + add_dependencies(xrpl.tests xrpl.test.net) +endif () xrpl_add_test(ledger) target_link_libraries(xrpl.test.ledger PRIVATE xrpl.imports.test) -add_dependencies(xrpl.tests xrpl.test.ledger) \ No newline at end of file +add_dependencies(xrpl.tests xrpl.test.ledger) diff --git a/src/xrpld/app/ledger/LedgerHistory.cpp b/src/xrpld/app/ledger/LedgerHistory.cpp index 170f86ecb2..7c323ac256 100644 --- a/src/xrpld/app/ledger/LedgerHistory.cpp +++ b/src/xrpld/app/ledger/LedgerHistory.cpp @@ -8,13 +8,7 @@ namespace xrpl { -<<<<<<< HEAD LedgerHistory::LedgerHistory(beast::insight::Collector::ptr const& collector, Application& app) -======= -// FIXME: Need to clean up ledgers by index at some point - -LedgerHistory::LedgerHistory(beast::insight::Collector::ptr const& collector, Application& app) ->>>>>>> develop : app_(app) , collector_(collector) , mismatch_counter_(collector->make_counter("ledger.history", "mismatch"))