xrpld
Loading...
Searching...
No Matches
Gossip.h
1#pragma once
2
3#include <xrpl/beast/net/IPEndpoint.h>
4
5#include <vector>
6
7namespace xrpl::resource {
8
12struct Gossip
13{
14 explicit Gossip() = default;
15
19 struct Item
20 {
21 explicit Item() = default;
22
23 int balance{};
25 };
26
28};
29
30} // namespace xrpl::resource
A version-independent IP address and port combination.
Definition IPEndpoint.h:24
beast::ip::Endpoint address
Definition Gossip.h:24
std::vector< Item > items
Definition Gossip.h:27