mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-09 08:22:32 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
19 lines
411 B
C++
19 lines
411 B
C++
#pragma once
|
|
|
|
#include <xrpl/basics/base_uint.h>
|
|
#include <xrpl/protocol/HashPrefix.h>
|
|
#include <xrpl/protocol/Serializer.h>
|
|
#include <xrpl/protocol/XRPAmount.h>
|
|
|
|
namespace xrpl {
|
|
|
|
inline void
|
|
serializePayChanAuthorization(Serializer& msg, uint256 const& key, XRPAmount const& amt)
|
|
{
|
|
msg.add32(HashPrefix::paymentChannelClaim);
|
|
msg.addBitString(key);
|
|
msg.add64(amt.drops());
|
|
}
|
|
|
|
} // namespace xrpl
|