veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
context_info_container.h
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_C_ENTITIES_CONTEXT_INFO_CONTAINER_H
7#define VERIBLOCK_POP_CPP_C_ENTITIES_CONTEXT_INFO_CONTAINER_H
8
9#include "veriblock/pop/c/entities/serde.h"
10#include "veriblock/pop/c/type_helpers.h"
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16POP_DECLARE_ENTITY(context_info_container);
17
18POP_ENTITY_GETTER_FUNCTION(context_info_container, int, height);
19
20POP_ENTITY_GETTER_FUNCTION(context_info_container,
21 POP_ARRAY_NAME(u8),
22 first_previous_keystone);
23
24POP_ENTITY_GETTER_FUNCTION(context_info_container,
25 POP_ARRAY_NAME(u8),
26 second_previous_keystone);
27
28POP_ENTITY_SERIALIZE_TO_VBK(context_info_container);
29POP_ENTITY_DESERIALIZE_FROM_VBK(context_info_container);
30
31POP_GENERATE_DEFAULT_VALUE(context_info_container);
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif