veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
btc_block_addon.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_BTC_BLOCK_INDEX_HPP
7#define VERIBLOCK_POP_CPP_BTC_BLOCK_INDEX_HPP
8
9#include <veriblock/pop/arith_uint256.hpp>
10#include <veriblock/pop/entities/endorsements.hpp>
11#include <veriblock/pop/uint.hpp>
12
13#include "block_status.hpp"
14
15namespace altintegration {
16
18struct BtcBlockAddon {
19 using ref_height_t = int32_t;
20
23 ArithUint256 chainWork = 0;
24
25 static constexpr auto validTipLevel = BLOCK_VALID_TREE;
26
27 void setNullInmemFields();
28
29 void setIsBootstrap(bool isBootstrap);
30
31 uint32_t refCount() const;
32
33 const std::vector<ref_height_t>& getRefs() const { return refs; }
34
35 void addRef(ref_height_t referencedAtHeight);
36
37 void removeRef(ref_height_t referencedAtHeight);
38
39 void clearRefs();
40
41 void insertBlockOfProofEndorsement(const VbkEndorsement* e);
42
43 bool eraseLastFromBlockOfProofEndorsement(const VbkEndorsement* endorsement);
44
45 void clearBlockOfProofEndorsement();
46
47 const std::vector<const VbkEndorsement*>& getBlockOfProofEndorsement() const;
48
49 std::string toPrettyString() const;
50
51 void toVbkEncoding(WriteStream& w) const;
52
53 protected:
56 // Ideally we would want a sorted collection with cheap addition, deletion and
57 // lookup. In practice, due to VBK/BTC block time ratio(20x) and multiple APMs
58 // running, there's little chance of VTBs shipping non-empty BTC context. The
59 // altchain mempool prioritization algo will realistically pick 1 VTB per VBK
60 // keystone period(20 blocks), providing us with the BTC block mined during
61 // this period. Thus, we can expect to have 1-2 references per block and 2x
62 // that during fork resolution making std::vector the fastest storage option
63 // in this case.
64 // TODO: figure out if this is somehow abusable by spammers/dosers
65 std::vector<ref_height_t> refs{};
66
69 std::vector<const VbkEndorsement*> _blockOfProofEndorsements;
70
71 void setDirty();
72
73 void setNull();
74
75 friend bool DeserializeFromVbkEncoding(ReadStream& stream,
76 BtcBlockAddon& out,
77 ValidationState& state);
78};
79
82 BtcBlockAddon& out,
83 ValidationState& state);
84
85} // namespace altintegration
86
87#endif // VERIBLOCK_POP_CPP_BTC_BLOCK_INDEX_HPP
Class that is used for storing validation state.
Defines logging helpers.
Definition: block.hpp:14
@ 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.
Definition: read_stream.hpp:22