veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
payloads_index_detail.hpp
1#ifndef E5300CA9_8C69_4C9C_A7D6_EFCACBB2534D
2#define E5300CA9_8C69_4C9C_A7D6_EFCACBB2534D
3
4#include <veriblock/pop/entities/popdata.hpp>
5
6namespace altintegration {
7namespace detail {
8
9template <typename PL>
10inline void PLIAddBlock(PL& pl, const BlockIndex<AltBlock>& index) {
11 const auto& hash = index.getHash();
12 for (const auto& id : index.getPayloadIds<ATV>()) {
13 pl.add(id.asVector(), hash);
14 }
15 for (const auto& id : index.getPayloadIds<VTB>()) {
16 pl.add(id.asVector(), hash);
17 }
18 for (const auto& id : index.getPayloadIds<VbkBlock>()) {
19 pl.add(id.asVector(), hash);
20 }
21}
22
23template <typename PL>
24inline void PLIAddBlock(PL& pl, const BlockIndex<VbkBlock>& index) {
25 const auto& hash = index.getHash();
26 for (const auto& id : index.getPayloadIds<VTB>()) {
27 pl.add(id.asVector(), hash);
28 }
29}
30
31template <typename PL>
32inline void PLIAddBlock(PL&, const BlockIndex<BtcBlock>&) {
33 // do nothing
34}
35
36template <typename PL>
37inline void PLIRemoveBlock(PL& pl, const BlockIndex<AltBlock>& index) {
38 const auto& hash = index.getHash();
39 for (const auto& id : index.getPayloadIds<ATV>()) {
40 pl.remove(id.asVector(), hash);
41 }
42 for (const auto& id : index.getPayloadIds<VTB>()) {
43 pl.remove(id.asVector(), hash);
44 }
45 for (const auto& id : index.getPayloadIds<VbkBlock>()) {
46 pl.remove(id.asVector(), hash);
47 }
48}
49
50template <typename PL>
51inline void PLIRemoveBlock(PL& pl, const BlockIndex<VbkBlock>& index) {
52 const auto& hash = index.getHash();
53 for (const auto& id : index.getPayloadIds<VTB>()) {
54 pl.remove(id.asVector(), hash);
55 }
56}
57
58template <typename PL>
59inline void PLIRemoveBlock(PL&, const BlockIndex<BtcBlock>&) {
60 // do nothing
61}
62
63} // namespace detail
64} // namespace altintegration
65
66#endif /* E5300CA9_8C69_4C9C_A7D6_EFCACBB2534D */
Defines logging helpers.
Definition: block.hpp:14