mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
Co-authored-by: Bart <11445373+bthomee@users.noreply.github.com> Co-authored-by: Bart <bthomee@users.noreply.github.com>
21 lines
378 B
C++
21 lines
378 B
C++
#pragma once
|
|
|
|
#include <xrpl/json/json_forwards.h>
|
|
#include <xrpl/protocol/STTx.h>
|
|
#include <xrpl/protocol/TxMeta.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace xrpl::RPC {
|
|
|
|
/**
|
|
Adds common synthetic fields to transaction-related JSON responses
|
|
|
|
@{
|
|
*/
|
|
void
|
|
insertNFTSyntheticInJson(Json::Value&, std::shared_ptr<STTx const> const&, TxMeta const&);
|
|
/** @} */
|
|
|
|
} // namespace xrpl::RPC
|