veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
pop_payouts.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_POP_PAYOUTS_H
7#define VERIBLOCK_POP_CPP_C_ENTITIES_POP_PAYOUTS_H
8
9#include <stdint.h>
10
11#include "veriblock/pop/c/array.h"
12#include "veriblock/pop/c/entities/serde.h"
13#include "veriblock/pop/c/type_helpers.h"
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19POP_DECLARE_ENTITY(pop_payout);
20
21POP_ENTITY_GETTER_FUNCTION(pop_payout, POP_ARRAY_NAME(u8), payout_info);
22POP_ENTITY_GETTER_FUNCTION(pop_payout, uint64_t, amount);
23
24POP_DECLARE_ARRAY(POP_ENTITY_NAME(pop_payout) *, pop_payout);
25
26POP_GENERATE_DEFAULT_VALUE(pop_payout);
27
28#ifdef __cplusplus
29}
30#endif
31
32#endif