mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
* upstream/develop: (518 commits) Set version to 2.4.0-b1 fix: Add header for set_difference (5197) fix: allow overlapping types in `Expected` (5218) Add MPTIssue to STIssue (5200) Antithesis instrumentation improvements (5213) Enforce levelization in libxrpl with CMake (5111) refactor: clean up `LedgerEntry.cpp` (5199) test: Add more test cases for Base58 parser (5174) test: Check for some unlikely null dereferences in tests (5004) Add Antithesis intrumentation (5042) Set version to 2.3.0 refactor(AMMClawback): move tfClawTwoAssets check (5201) Add a new serialized type: STNumber (5121) fix: check for valid ammID field in amm_info RPC (5188) Set version to 2.3.0-rc2 fix: include `index` in `server_definitions` RPC (5190) Fix ledger_entry crash on invalid credentials request (5189) Set version to 2.3.0-rc1 Replace Uint192 with Hash192 in server_definitions response (5177) Fix potential deadlock (5124) ...
70 lines
2.2 KiB
C++
70 lines
2.2 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_PROTOCOL_PAYCHAN_H_INCLUDED
|
|
#define RIPPLE_PROTOCOL_PAYCHAN_H_INCLUDED
|
|
|
|
#include <xrpl/basics/base_uint.h>
|
|
#include <xrpl/protocol/HashPrefix.h>
|
|
#include <xrpl/protocol/Serializer.h>
|
|
#include <xrpl/protocol/XRPAmount.h>
|
|
|
|
namespace ripple {
|
|
|
|
inline void
|
|
serializePayChanAuthorization(
|
|
Serializer& msg,
|
|
uint256 const& key,
|
|
XRPAmount const& amt)
|
|
{
|
|
msg.add32(HashPrefix::paymentChannelClaim);
|
|
msg.addBitString(key);
|
|
msg.add64(amt.drops());
|
|
}
|
|
|
|
inline void
|
|
serializePayChanAuthorization(
|
|
Serializer& msg,
|
|
uint256 const& key,
|
|
IOUAmount const& amt,
|
|
Currency const& cur,
|
|
AccountID const& iss)
|
|
{
|
|
msg.add32(HashPrefix::paymentChannelClaim);
|
|
msg.addBitString(key);
|
|
if (amt == beast::zero)
|
|
msg.add64(STAmount::cIssuedCurrency);
|
|
else if (amt.signum() == -1) // 512 = not native
|
|
msg.add64(
|
|
amt.mantissa() |
|
|
(static_cast<std::uint64_t>(amt.exponent() + 512 + 97)
|
|
<< (64 - 10)));
|
|
else // 256 = positive
|
|
msg.add64(
|
|
amt.mantissa() |
|
|
(static_cast<std::uint64_t>(amt.exponent() + 512 + 256 + 97)
|
|
<< (64 - 10)));
|
|
msg.addBitString(cur);
|
|
msg.addBitString(iss);
|
|
}
|
|
|
|
} // namespace ripple
|
|
|
|
#endif
|