Implement deposit_authorized RPC and tests (#728)

Fixes #727
This commit is contained in:
Alex Kremer
2023-07-04 11:21:41 +01:00
committed by GitHub
parent 0a7def18cd
commit 81894c0a90
5 changed files with 754 additions and 0 deletions

View File

@@ -33,6 +33,7 @@
#include <rpc/handlers/AccountTx.h>
#include <rpc/handlers/BookChanges.h>
#include <rpc/handlers/BookOffers.h>
#include <rpc/handlers/DepositAuthorized.h>
#include <rpc/handlers/GatewayBalances.h>
#include <rpc/handlers/Ledger.h>
#include <rpc/handlers/LedgerData.h>
@@ -70,6 +71,7 @@ ProductionHandlerProvider::ProductionHandlerProvider(
{"account_tx", {AccountTxHandler{backend}}},
{"book_changes", {BookChangesHandler{backend}}},
{"book_offers", {BookOffersHandler{backend}}},
{"deposit_authorized", {DepositAuthorizedHandler{backend}}},
{"gateway_balances", {GatewayBalancesHandler{backend}}},
{"ledger", {LedgerHandler{backend}}},
{"ledger_data", {LedgerDataHandler{backend}}},