mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-25 06:05:53 +00:00
add support for transaction_entry
This commit is contained in:
@@ -93,6 +93,7 @@ target_sources(clio PRIVATE
|
||||
src/rpc/handlers/LedgerRange.cpp
|
||||
# Transaction
|
||||
src/rpc/handlers/Tx.cpp
|
||||
src/rpc/handlers/TransactionEntry.cpp
|
||||
src/rpc/handlers/AccountTx.cpp
|
||||
# Dex
|
||||
src/rpc/handlers/BookOffers.cpp
|
||||
|
||||
@@ -62,6 +62,9 @@ doLedgerRange(Context const& context);
|
||||
Result
|
||||
doTx(Context const& context);
|
||||
|
||||
Result
|
||||
doTransactionEntry(Context const& context);
|
||||
|
||||
Result
|
||||
doAccountTx(Context const& context);
|
||||
|
||||
|
||||
@@ -119,7 +119,7 @@ static std::unordered_map<std::string, std::function<Result(Context const&)>>
|
||||
{"server_info", &doServerInfo},
|
||||
{"unsubscribe", &doUnsubscribe},
|
||||
{"tx", &doTx},
|
||||
};
|
||||
{"transaction_entry", &doTransactionEntry}};
|
||||
|
||||
static std::unordered_set<std::string> forwardCommands{
|
||||
"submit",
|
||||
|
||||
Reference in New Issue
Block a user