mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-26 16:40:20 +00:00
* XRPLF/develop: chore: Run clang_tidy_check with `pass_filenames: false` from pre-commit (7800) feat: Add delegate filter param for account_tx RPC (6126) refactor: Move `jss.h` `include` out of `Indexes.h` (7799) test: Add tests for check doxygen style (7795) style: Add pre-commit hook to check doxygen style (7794) style: Unify style for all Doxygen comments (7776) fix: Improve Number addition/subtraction rounding (7369) feat: XLS-68: Sponsor, 5887 continuation (7350)
93 lines
2.2 KiB
C++
93 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include <xrpl/basics/Slice.h>
|
|
#include <xrpl/basics/base_uint.h>
|
|
#include <xrpl/basics/chrono.h>
|
|
#include <xrpl/beast/utility/Zero.h>
|
|
#include <xrpl/protocol/Protocol.h>
|
|
#include <xrpl/protocol/Serializer.h>
|
|
#include <xrpl/protocol/XRPAmount.h>
|
|
|
|
#include <cstdint>
|
|
|
|
namespace xrpl {
|
|
|
|
/**
|
|
* Information about the notional ledger backing the view.
|
|
*/
|
|
struct LedgerHeader
|
|
{
|
|
explicit LedgerHeader() = default;
|
|
|
|
//
|
|
// For all ledgers
|
|
//
|
|
|
|
LedgerIndex seq = 0;
|
|
NetClock::time_point parentCloseTime;
|
|
|
|
//
|
|
// For closed ledgers
|
|
//
|
|
|
|
// Closed means "tx set already determined"
|
|
uint256 hash = beast::kZero;
|
|
uint256 txHash = beast::kZero;
|
|
uint256 accountHash = beast::kZero;
|
|
uint256 parentHash = beast::kZero;
|
|
|
|
XRPAmount drops = beast::kZero;
|
|
|
|
// If validated is false, it means "not yet validated."
|
|
// Once validated is true, it will never be set false at a later time.
|
|
// NOTE: If you are accessing this directly, you are probably doing it
|
|
// wrong. Use LedgerMaster::isValidated().
|
|
// VFALCO TODO Make this not mutable
|
|
bool mutable validated = false;
|
|
bool accepted = false;
|
|
|
|
// flags indicating how this ledger close took place
|
|
int closeFlags = 0;
|
|
|
|
// the resolution for this ledger close time (2-120 seconds)
|
|
NetClock::duration closeTimeResolution = {};
|
|
|
|
// For closed ledgers, the time the ledger
|
|
// closed. For open ledgers, the time the ledger
|
|
// will close if there's no transactions.
|
|
//
|
|
NetClock::time_point closeTime;
|
|
};
|
|
|
|
// ledger close flags
|
|
static std::uint32_t const kSLcfNoConsensusTime = 0x01;
|
|
|
|
inline bool
|
|
getCloseAgree(LedgerHeader const& info)
|
|
{
|
|
return (info.closeFlags & kSLcfNoConsensusTime) == 0;
|
|
}
|
|
|
|
void
|
|
addRaw(LedgerHeader const&, Serializer&, bool includeHash = false);
|
|
|
|
/**
|
|
* Deserialize a ledger header from a byte array.
|
|
*/
|
|
LedgerHeader
|
|
deserializeHeader(Slice data, bool hasHash = false);
|
|
|
|
/**
|
|
* Deserialize a ledger header (prefixed with 4 bytes) from a byte array.
|
|
*/
|
|
LedgerHeader
|
|
deserializePrefixedHeader(Slice data, bool hasHash = false);
|
|
|
|
/**
|
|
* Calculate the hash of a ledger header.
|
|
*/
|
|
uint256
|
|
calculateLedgerHash(LedgerHeader const& info);
|
|
|
|
} // namespace xrpl
|