veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
altintegration::btc::GetHeadersMsg Struct Reference

Detailed Description

Definition at line 128 of file messages.hpp.

+ Collaboration diagram for altintegration::btc::GetHeadersMsg:

Public Member Functions

template<typename Stream , typename Operation >
void SerializationOp (Stream &s, Operation ser_action)
 

Public Attributes

BlockLocator locator
 
uint256 hashStop
 
 ADD_SERIALIZE_METHODS
 

Friends

bool operator== (const GetHeadersMsg &a, const GetHeadersMsg &b)
 
bool operator!= (const GetHeadersMsg &a, const GetHeadersMsg &b)
 

Member Function Documentation

◆ SerializationOp()

template<typename Stream , typename Operation >
void altintegration::btc::GetHeadersMsg::SerializationOp ( Stream &  s,
Operation  ser_action 
)
inline

Definition at line 135 of file messages.hpp.

135 {
136 READWRITE(this->locator);
137 READWRITE(this->hashStop);
138 }

Friends And Related Function Documentation

◆ operator!=

bool operator!= ( const GetHeadersMsg a,
const GetHeadersMsg b 
)
friend

Definition at line 143 of file messages.hpp.

143 {
144 return !(a == b);
145 }

◆ operator==

bool operator== ( const GetHeadersMsg a,
const GetHeadersMsg b 
)
friend

Definition at line 140 of file messages.hpp.

140 {
141 return a.locator == b.locator && a.hashStop == b.hashStop;
142 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::GetHeadersMsg::ADD_SERIALIZE_METHODS

Definition at line 132 of file messages.hpp.

◆ hashStop

uint256 altintegration::btc::GetHeadersMsg::hashStop

Definition at line 130 of file messages.hpp.

◆ locator

BlockLocator altintegration::btc::GetHeadersMsg::locator

Definition at line 129 of file messages.hpp.


The documentation for this struct was generated from the following file: