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

Detailed Description

Definition at line 148 of file messages.hpp.

+ Collaboration diagram for altintegration::btc::TxMsg:

Public Member Functions

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

Public Attributes

Transaction tx
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 154 of file messages.hpp.

154 {
155 READWRITE(this->tx);
156 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 161 of file messages.hpp.

161{ return !(a == b); }

◆ operator==

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

Definition at line 158 of file messages.hpp.

158 {
159 return a.tx == b.tx;
160 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::TxMsg::ADD_SERIALIZE_METHODS

Definition at line 151 of file messages.hpp.

◆ tx

Transaction altintegration::btc::TxMsg::tx

Definition at line 149 of file messages.hpp.


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