veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
stored_vbk_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_VBK_STORAGE_STORED_VBK_BLOCK_ADDON_HPP
7#define VERIBLOCK_POP_CPP_VBK_STORAGE_STORED_VBK_BLOCK_ADDON_HPP
8
9#include <veriblock/pop/blockchain/vbk_block_addon.hpp>
10#include <veriblock/pop/serde.hpp>
11#include <veriblock/pop/uint.hpp>
12
13namespace altintegration {
14
16struct StoredVbkBlockAddon {
17 using addon_t = VbkBlockAddon;
18 using pop_state_t = PopState<VbkEndorsement>;
19
20 StoredVbkBlockAddon() = default;
21 StoredVbkBlockAddon(const addon_t& other);
22
23 void toVbkEncoding(WriteStream& w) const;
24
25 void toInmem(addon_t& to) const;
26
27 std::string toPrettyString() const;
28
30 uint32_t _refCount = 0;
31 // VTB::id_t
32 std::vector<uint256> _vtbids;
33 // list of endorsement of ALT blocks, whose BlockOfProof is
34 // this block ids. Must be a vector, because we can have duplicates here
35 std::vector<uint256> blockOfProofEndorsementIds;
36 // list of endorsement pointing to this block ids.
37 // Must be a vector, because we can have duplicates here
38 std::vector<uint256> endorsedByIds;
39 // POP endorsements state
40 pop_state_t popState;
41};
42
43bool DeserializeFromVbkEncoding(ReadStream& stream,
44 StoredVbkBlockAddon& out,
45 ValidationState& state);
46
47} // namespace altintegration
48
49#endif // VERIBLOCK_POP_CPP_VBK_STORAGE_STORED_VBK_BLOCK_ADDON_HPP
Defines logging helpers.
Definition: block.hpp:14
bool DeserializeFromVbkEncoding(ReadStream &stream, AltBlockAddon &out, ValidationState &state)
This is an overloaded member function, provided for convenience. It differs from the above function o...