Definition at line 243 of file net_entities.hpp.
|
template<typename Stream , typename Operation > |
void | SerializationOp (Stream &s, Operation ser_action) |
|
◆ SerializationOp()
template<typename Stream , typename Operation >
void altintegration::btc::PrefilledTransaction::SerializationOp |
( |
Stream & |
s, |
|
|
Operation |
ser_action |
|
) |
| |
|
inline |
Definition at line 252 of file net_entities.hpp.
252 {
253 uint64_t idx = this->index;
254 READWRITE(COMPACTSIZE(idx));
255 if (idx > std::numeric_limits<uint16_t>::max()) {
256 throw std::ios_base::failure("index overflowed 16-bits");
257 }
258 index = (uint16_t)idx;
259 READWRITE(this->tx);
260 }
◆ operator!=
◆ operator==
Definition at line 262 of file net_entities.hpp.
263 {
264 return a.index == b.index && a.tx == b.tx;
265 }
◆ ADD_SERIALIZE_METHODS
altintegration::btc::PrefilledTransaction::ADD_SERIALIZE_METHODS |
◆ index
uint16_t altintegration::btc::PrefilledTransaction::index |
◆ tx
Transaction altintegration::btc::PrefilledTransaction::tx |
The documentation for this struct was generated from the following file: