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

Detailed Description

Definition at line 164 of file messages.hpp.

+ Collaboration diagram for altintegration::btc::CmpctBlockMsg:

Public Member Functions

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

Public Attributes

BlockHeaderAndShortTxIDs block_header
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 170 of file messages.hpp.

170 {
171 READWRITE(this->block_header);
172 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 177 of file messages.hpp.

177 {
178 return !(a == b);
179 }

◆ operator==

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

Definition at line 174 of file messages.hpp.

174 {
175 return a.block_header == b.block_header;
176 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::CmpctBlockMsg::ADD_SERIALIZE_METHODS

Definition at line 167 of file messages.hpp.

◆ block_header

BlockHeaderAndShortTxIDs altintegration::btc::CmpctBlockMsg::block_header

Definition at line 165 of file messages.hpp.


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