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

Detailed Description

Definition at line 90 of file messages.hpp.

+ Collaboration diagram for altintegration::btc::GetBlocksMsg:

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 GetBlocksMsg &a, const GetBlocksMsg &b)
 
bool operator!= (const GetBlocksMsg &a, const GetBlocksMsg &b)
 

Member Function Documentation

◆ SerializationOp()

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

Definition at line 97 of file messages.hpp.

97 {
98 READWRITE(this->locator);
99 READWRITE(this->hashStop);
100 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 105 of file messages.hpp.

105 {
106 return !(a == b);
107 }

◆ operator==

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

Definition at line 102 of file messages.hpp.

102 {
103 return a.locator == b.locator && a.hashStop == b.hashStop;
104 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::GetBlocksMsg::ADD_SERIALIZE_METHODS

Definition at line 94 of file messages.hpp.

◆ hashStop

uint256 altintegration::btc::GetBlocksMsg::hashStop

Definition at line 92 of file messages.hpp.

◆ locator

BlockLocator altintegration::btc::GetBlocksMsg::locator

Definition at line 91 of file messages.hpp.


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