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