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

Detailed Description

Definition at line 35 of file messages.hpp.

+ Collaboration diagram for altintegration::btc::SendCmpctMsg:

Public Member Functions

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

Public Attributes

bool fAnnounceUsingCMPCTBLOCK
 
uint64_t nCMPCTBLOCKVersion
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 42 of file messages.hpp.

42 {
43 READWRITE(this->fAnnounceUsingCMPCTBLOCK);
44 READWRITE(this->nCMPCTBLOCKVersion);
45 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 51 of file messages.hpp.

51 {
52 return !(a == b);
53 }

◆ operator==

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

Definition at line 47 of file messages.hpp.

47 {
48 return a.fAnnounceUsingCMPCTBLOCK == b.fAnnounceUsingCMPCTBLOCK &&
49 a.nCMPCTBLOCKVersion == b.nCMPCTBLOCKVersion;
50 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::SendCmpctMsg::ADD_SERIALIZE_METHODS

Definition at line 39 of file messages.hpp.

◆ fAnnounceUsingCMPCTBLOCK

bool altintegration::btc::SendCmpctMsg::fAnnounceUsingCMPCTBLOCK

Definition at line 36 of file messages.hpp.

◆ nCMPCTBLOCKVersion

uint64_t altintegration::btc::SendCmpctMsg::nCMPCTBLOCKVersion

Definition at line 37 of file messages.hpp.


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