mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-22 14:50:54 +00:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
36 lines
599 B
C++
36 lines
599 B
C++
#pragma once
|
|
|
|
#include <xrpl/resource/Consumer.h>
|
|
#include <xrpl/resource/detail/Entry.h>
|
|
|
|
#include <vector>
|
|
|
|
namespace xrpl::resource {
|
|
|
|
/**
|
|
* A set of imported consumer data from a gossip origin.
|
|
*/
|
|
struct Import
|
|
{
|
|
struct Item
|
|
{
|
|
explicit Item() = default;
|
|
|
|
int balance{};
|
|
Consumer consumer;
|
|
};
|
|
|
|
// Dummy argument required for zero-copy construction
|
|
Import(int = 0)
|
|
{
|
|
}
|
|
|
|
// When the imported data expires
|
|
clock_type::time_point whenExpires;
|
|
|
|
// List of remote entries
|
|
std::vector<Item> items;
|
|
};
|
|
|
|
} // namespace xrpl::resource
|