veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
stored_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_VBK_STORAGE_STORED_BTC_BLOCK_ADDON_HPP
7#define VERIBLOCK_POP_CPP_VBK_STORAGE_STORED_BTC_BLOCK_ADDON_HPP
8
9#include <veriblock/pop/blockchain/btc_block_addon.hpp>
10#include <veriblock/pop/serde.hpp>
11#include <veriblock/pop/uint.hpp>
12
13namespace altintegration {
14
16struct StoredBtcBlockAddon {
17 using addon_t = BtcBlockAddon;
18 using ref_height_t = int32_t;
19
20 StoredBtcBlockAddon() = default;
21 StoredBtcBlockAddon(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
31 // Ideally we would want a sorted collection with cheap addition, deletion and
32 // lookup. In practice, due to VBK/BTC block time ratio(20x) and multiple APMs
33 // running, there's little chance of VTBs shipping non-empty BTC context. The
34 // altchain mempool prioritization algo will realistically pick 1 VTB per VBK
35 // keystone period(20 blocks), providing us with the BTC block mined during
36 // this period. Thus, we can expect to have 1-2 references per block and 2x
37 // that during fork resolution making std::vector the fastest storage option
38 // in this case.
39 // TODO: figure out if this is somehow abusable by spammers/dosers
40 std::vector<ref_height_t> refs{};
41
44 std::vector<uint256> blockOfProofEndorsementIds;
45};
46
47bool DeserializeFromVbkEncoding(ReadStream& stream,
48 StoredBtcBlockAddon& out,
49 ValidationState& state);
50
51} // namespace altintegration
52
53#endif // VERIBLOCK_POP_CPP_VBK_STORAGE_STORED_BTC_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...