mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change updates the ColumnLimit from 80 to 120, and applies clang-format to reformat the code.
27 lines
512 B
C++
27 lines
512 B
C++
#ifndef XRPL_PROTOCOL_NFTSYNTHETICSERIALIZER_H_INCLUDED
|
|
#define XRPL_PROTOCOL_NFTSYNTHETICSERIALIZER_H_INCLUDED
|
|
|
|
#include <xrpl/json/json_forwards.h>
|
|
#include <xrpl/protocol/STTx.h>
|
|
#include <xrpl/protocol/TxMeta.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace xrpl {
|
|
|
|
namespace RPC {
|
|
|
|
/**
|
|
Adds common synthetic fields to transaction-related JSON responses
|
|
|
|
@{
|
|
*/
|
|
void
|
|
insertNFTSyntheticInJson(Json::Value&, std::shared_ptr<STTx const> const&, TxMeta const&);
|
|
/** @} */
|
|
|
|
} // namespace RPC
|
|
} // namespace xrpl
|
|
|
|
#endif
|