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

Detailed Description

Definition at line 272 of file net_entities.hpp.

+ Collaboration diagram for altintegration::btc::BlockHeaderAndShortTxIDs:

Public Member Functions

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

Public Attributes

BlockHeader header
 
uint64_t nonce
 
std::vector< uint64_t > shorttxids
 
std::vector< PrefilledTransactionprefilledtxn
 
 ADD_SERIALIZE_METHODS
 

Static Public Attributes

static const uint32_t SHORTTXIDS_LENGTH = 6
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 283 of file net_entities.hpp.

283 {
284 READWRITE(this->header);
285 READWRITE(this->nonce);
286
287 uint64_t shorttxids_size = (uint64_t)this->shorttxids.size();
288 READWRITE(COMPACTSIZE(shorttxids_size));
289 if (ser_action.ForRead()) {
290 size_t i = 0;
291 while (this->shorttxids.size() < shorttxids_size) {
292 this->shorttxids.resize(std::min(
293 (uint64_t)(1000 + this->shorttxids.size()), shorttxids_size));
294 for (; i < shorttxids.size(); i++) {
295 uint32_t lsb = 0;
296 uint16_t msb = 0;
297 READWRITE(lsb);
298 READWRITE(msb);
299 this->shorttxids[i] = (uint64_t(msb) << 32) | uint64_t(lsb);
300 }
301 }
302 } else {
303 for (size_t i = 0; i < this->shorttxids.size(); i++) {
304 uint32_t lsb = this->shorttxids[i] & 0xffffffff;
305 uint16_t msb = (this->shorttxids[i] >> 32) & 0xffff;
306 READWRITE(lsb);
307 READWRITE(msb);
308 }
309 }
310
311 READWRITE(this->prefilledtxn);
312
313 if (this->shorttxids.size() + this->prefilledtxn.size() >
314 std::numeric_limits<uint16_t>::max()) {
315 throw std::ios_base::failure("indexes overflowed 16 bits");
316 }
317 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 324 of file net_entities.hpp.

325 {
326 return !(a == b);
327 }

◆ operator==

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

Definition at line 319 of file net_entities.hpp.

320 {
321 return a.header == b.header && a.nonce == b.nonce &&
322 a.shorttxids == b.shorttxids && a.prefilledtxn == b.prefilledtxn;
323 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::BlockHeaderAndShortTxIDs::ADD_SERIALIZE_METHODS

Definition at line 280 of file net_entities.hpp.

◆ header

BlockHeader altintegration::btc::BlockHeaderAndShortTxIDs::header

Definition at line 275 of file net_entities.hpp.

◆ nonce

uint64_t altintegration::btc::BlockHeaderAndShortTxIDs::nonce

Definition at line 276 of file net_entities.hpp.

◆ prefilledtxn

std::vector<PrefilledTransaction> altintegration::btc::BlockHeaderAndShortTxIDs::prefilledtxn

Definition at line 278 of file net_entities.hpp.

◆ shorttxids

std::vector<uint64_t> altintegration::btc::BlockHeaderAndShortTxIDs::shorttxids

Definition at line 277 of file net_entities.hpp.

◆ SHORTTXIDS_LENGTH

const uint32_t altintegration::btc::BlockHeaderAndShortTxIDs::SHORTTXIDS_LENGTH = 6
static

Definition at line 273 of file net_entities.hpp.


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