Implement ledger_range rpc handler (#548)

Fixes #549
This commit is contained in:
Alex Kremer
2023-03-21 14:14:43 +00:00
committed by GitHub
parent edd2e9dd4b
commit 21eeb9ae02
4 changed files with 186 additions and 0 deletions

View File

@@ -62,6 +62,7 @@ target_sources(clio PRIVATE
src/rpc/ngHandlers/Tx.cpp
src/rpc/ngHandlers/GatewayBalances.cpp
src/rpc/ngHandlers/LedgerEntry.cpp
src/rpc/ngHandlers/LedgerRange.cpp
src/rpc/ngHandlers/BookOffers.cpp
## RPC Methods
# Account
@@ -128,6 +129,7 @@ if(BUILD_TESTS)
unittests/rpc/handlers/TxTest.cpp
unittests/rpc/handlers/GatewayBalancesTest.cpp
unittests/rpc/handlers/LedgerEntryTest.cpp
unittests/rpc/handlers/LedgerRangeTest.cpp
unittests/rpc/handlers/BookOffersTest.cpp)
include(CMake/deps/gtest.cmake)