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

Detailed Description

Definition at line 182 of file messages.hpp.

+ Collaboration diagram for altintegration::btc::BlockTxnMsg:

Public Member Functions

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

Public Attributes

BlockTransactions resp
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 188 of file messages.hpp.

188 {
189 READWRITE(this->resp);
190 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 195 of file messages.hpp.

195 {
196 return !(a == b);
197 }

◆ operator==

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

Definition at line 192 of file messages.hpp.

192 {
193 return a.resp == b.resp;
194 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::BlockTxnMsg::ADD_SERIALIZE_METHODS

Definition at line 185 of file messages.hpp.

◆ resp

BlockTransactions altintegration::btc::BlockTxnMsg::resp

Definition at line 183 of file messages.hpp.


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