6#ifndef VERIBLOCK_POP_CPP_BTC_BLOCK_INDEX_HPP
7#define VERIBLOCK_POP_CPP_BTC_BLOCK_INDEX_HPP
9#include <veriblock/pop/arith_uint256.hpp>
10#include <veriblock/pop/entities/endorsements.hpp>
11#include <veriblock/pop/uint.hpp>
13#include "block_status.hpp"
19 using ref_height_t = int32_t;
23 ArithUint256 chainWork = 0;
27 void setNullInmemFields();
29 void setIsBootstrap(
bool isBootstrap);
31 uint32_t refCount()
const;
33 const std::vector<ref_height_t>& getRefs()
const {
return refs; }
35 void addRef(ref_height_t referencedAtHeight);
37 void removeRef(ref_height_t referencedAtHeight);
41 void insertBlockOfProofEndorsement(
const VbkEndorsement* e);
43 bool eraseLastFromBlockOfProofEndorsement(
const VbkEndorsement* endorsement);
45 void clearBlockOfProofEndorsement();
47 const std::vector<const VbkEndorsement*>& getBlockOfProofEndorsement()
const;
49 std::string toPrettyString()
const;
51 void toVbkEncoding(WriteStream& w)
const;
65 std::vector<ref_height_t> refs{};
69 std::vector<const VbkEndorsement*> _blockOfProofEndorsements;
77 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.