6#ifndef VERIBLOCK_POP_CPP_VBK_BLOCK_INDEX_HPP
7#define VERIBLOCK_POP_CPP_VBK_BLOCK_INDEX_HPP
9#include <veriblock/pop/arith_uint256.hpp>
10#include <veriblock/pop/entities/endorsements.hpp>
11#include <veriblock/pop/logger.hpp>
12#include <veriblock/pop/uint.hpp>
14#include "block_status.hpp"
15#include "pop/pop_state.hpp"
22struct VbkBlockAddon :
public PopState<VbkEndorsement> {
23 using payloads_t = VTB;
24 using ref_height_t = int32_t;
28 ArithUint256 chainWork = 0;
30 void setNullInmemFields();
34 uint32_t refCount()
const {
return _refCount; }
35 void setRef(uint32_t count);
37 void addRef(ref_height_t);
39 void removeRef(ref_height_t);
41 void setIsBootstrap(
bool isBootstrap);
43 void insertBlockOfProofEndorsement(
const AltEndorsement* e);
45 bool eraseLastFromBlockOfProofEndorsement(
const AltEndorsement* endorsement);
47 void clearBlockOfProofEndorsement();
49 const std::vector<const AltEndorsement*>& getBlockOfProofEndorsement()
const;
51 bool hasPayloads()
const {
return !_vtbids.empty(); }
53 template <
typename pop_t>
54 const std::vector<typename pop_t::id_t>& getPayloadIds()
const;
56 template <
typename pop_t>
57 void removePayloadId(
const typename pop_t::id_t& pid) {
58 auto it = std::find(_vtbids.begin(), _vtbids.end(), pid);
59 VBK_ASSERT(it != _vtbids.end());
64 template <
typename pop_t>
65 void insertPayloadId(
const typename pop_t::id_t& pid) {
66 _vtbids.push_back(pid);
70 template <
typename pop_t>
71 void insertPayloadIds(
const std::vector<typename pop_t::id_t>& pids) {
72 _vtbids.insert(_vtbids.end(), pids.begin(), pids.end());
76 std::string toPrettyString()
const;
78 void toVbkEncoding(WriteStream& w)
const;
82 uint32_t _refCount = 0;
84 std::vector<uint256> _vtbids;
88 std::vector<const AltEndorsement*> _blockOfProofEndorsements;
96 ValidationState& state);
Class that is used for storing validation state.
@ BLOCK_VALID_TREE
acceptBlockHeader succeded.
bool DeserializeFromVbkEncoding(ReadStream &stream, AltBlockAddon &out, ValidationState &state)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Binary reading stream, that is useful during binary deserialization.