1#ifndef E5300CA9_8C69_4C9C_A7D6_EFCACBB2534D
2#define E5300CA9_8C69_4C9C_A7D6_EFCACBB2534D
4#include <veriblock/pop/entities/popdata.hpp>
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);
15 for (
const auto&
id : index.getPayloadIds<VTB>()) {
16 pl.add(
id.asVector(), hash);
18 for (
const auto&
id : index.getPayloadIds<VbkBlock>()) {
19 pl.add(
id.asVector(), hash);
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);
32inline void PLIAddBlock(PL&,
const BlockIndex<BtcBlock>&) {
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);
42 for (
const auto&
id : index.getPayloadIds<VTB>()) {
43 pl.remove(
id.asVector(), hash);
45 for (
const auto&
id : index.getPayloadIds<VbkBlock>()) {
46 pl.remove(
id.asVector(), hash);
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);
59inline void PLIRemoveBlock(PL&,
const BlockIndex<BtcBlock>&) {