veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
merkle_path.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_MERKLE_PATH_H
7#define VERIBLOCK_POP_CPP_C_ENTITIES_MERKLE_PATH_H
8
9#include "stdint.h"
10#include "veriblock/pop/c/array.h"
11#include "veriblock/pop/c/type_helpers.h"
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17POP_DECLARE_ENTITY(merkle_path);
18
19POP_ENTITY_GETTER_FUNCTION(merkle_path, int32_t, index);
20POP_ENTITY_GETTER_FUNCTION(merkle_path, POP_ARRAY_NAME(u8), subject);
21POP_ENTITY_GETTER_FUNCTION(merkle_path, POP_ARRAY_NAME(array_u8), layers);
22
23POP_GENERATE_DEFAULT_VALUE(merkle_path);
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif