6#ifndef BFI_BITCOIN_NET_MESSAGES_HPP
7#define BFI_BITCOIN_NET_MESSAGES_HPP
9#include <veriblock/bfi/bitcoin/block.hpp>
10#include <veriblock/bfi/bitcoin/net/net_entities.hpp>
11#include <veriblock/bfi/bitcoin/serialize.hpp>
18 std::vector<Address> vAddr;
20 ADD_SERIALIZE_METHODS;
22 template <
typename Stream,
typename Operation>
23 inline void SerializationOp(Stream& s, Operation ser_action) {
24 READWRITE(this->vAddr);
28 return a.vAddr == b.vAddr;
36 bool fAnnounceUsingCMPCTBLOCK;
37 uint64_t nCMPCTBLOCKVersion;
39 ADD_SERIALIZE_METHODS;
41 template <
typename Stream,
typename Operation>
42 inline void SerializationOp(Stream& s, Operation ser_action) {
43 READWRITE(this->fAnnounceUsingCMPCTBLOCK);
44 READWRITE(this->nCMPCTBLOCKVersion);
48 return a.fAnnounceUsingCMPCTBLOCK == b.fAnnounceUsingCMPCTBLOCK &&
49 a.nCMPCTBLOCKVersion == b.nCMPCTBLOCKVersion;
57 std::vector<Inv> vInv;
59 ADD_SERIALIZE_METHODS;
61 template <
typename Stream,
typename Operation>
62 inline void SerializationOp(Stream& s, Operation ser_action) {
63 READWRITE(this->vInv);
66 friend bool operator==(
const InvMsg& a,
const InvMsg& b) {
67 return a.vInv == b.vInv;
69 friend bool operator!=(
const InvMsg& a,
const InvMsg& b) {
return !(a == b); }
73 std::vector<Inv> vInv;
75 ADD_SERIALIZE_METHODS;
77 template <
typename Stream,
typename Operation>
78 inline void SerializationOp(Stream& s, Operation ser_action) {
79 READWRITE(this->vInv);
83 return a.vInv == b.vInv;
94 ADD_SERIALIZE_METHODS;
96 template <
typename Stream,
typename Operation>
97 inline void SerializationOp(Stream& s, Operation ser_action) {
98 READWRITE(this->locator);
99 READWRITE(this->hashStop);
103 return a.locator == b.locator && a.hashStop == b.hashStop;
113 ADD_SERIALIZE_METHODS;
115 template <
typename Stream,
typename Operation>
116 inline void SerializationOp(Stream& s, Operation ser_action) {
117 READWRITE(this->req);
121 return a.req == b.req;
132 ADD_SERIALIZE_METHODS;
134 template <
typename Stream,
typename Operation>
135 inline void SerializationOp(Stream& s, Operation ser_action) {
136 READWRITE(this->locator);
137 READWRITE(this->hashStop);
141 return a.locator == b.locator && a.hashStop == b.hashStop;
151 ADD_SERIALIZE_METHODS;
153 template <
typename Stream,
typename Operation>
154 inline void SerializationOp(Stream& s, Operation ser_action) {
158 friend bool operator==(
const TxMsg& a,
const TxMsg& b) {
161 friend bool operator!=(
const TxMsg& a,
const TxMsg& b) {
return !(a == b); }
167 ADD_SERIALIZE_METHODS;
169 template <
typename Stream,
typename Operation>
170 inline void SerializationOp(Stream& s, Operation ser_action) {
171 READWRITE(this->block_header);
175 return a.block_header == b.block_header;
185 ADD_SERIALIZE_METHODS;
187 template <
typename Stream,
typename Operation>
188 inline void SerializationOp(Stream& s, Operation ser_action) {
189 READWRITE(this->resp);
193 return a.resp == b.resp;
203 ADD_SERIALIZE_METHODS;
205 template <
typename Stream,
typename Operation>
206 inline void SerializationOp(Stream& s, Operation ser_action) {
207 READWRITE(this->filter);
211 return a.filter == b.filter;
219 std::vector<uint8_t> vData;
221 ADD_SERIALIZE_METHODS;
223 template <
typename Stream,
typename Operation>
224 inline void SerializationOp(Stream& s, Operation ser_action) {
225 READWRITE(this->vData);
229 return a.vData == b.vData;
239 ADD_SERIALIZE_METHODS;
241 template <
typename Stream,
typename Operation>
242 inline void SerializationOp(Stream& s, Operation ser_action) {
243 READWRITE(this->newFeeFilter);
247 return a.newFeeFilter == b.newFeeFilter;
255 std::vector<Inv> vInv;
257 ADD_SERIALIZE_METHODS;
259 template <
typename Stream,
typename Operation>
260 inline void SerializationOp(Stream& s, Operation ser_action) {
261 READWRITE(this->vInv);
265 return a.vInv == b.vInv;
275 ADD_SERIALIZE_METHODS;
277 template <
typename Stream,
typename Operation>
278 inline void SerializationOp(Stream& s, Operation ser_action) {
279 READWRITE(this->block);
283 return a.block == b.block;
The basic transaction that is broadcasted on the network and contained in blocks.