mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-10 08:52:34 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
24 lines
405 B
C++
24 lines
405 B
C++
#pragma once
|
|
|
|
#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
|