mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-06 01:25:28 +00:00
23 lines
454 B
C
23 lines
454 B
C
#ifndef __GRADIDO_BLOCKCHAIN_C_COMPACT_ACCOUNT_BALANCE_H
|
|
#define __GRADIDO_BLOCKCHAIN_C_COMPACT_ACCOUNT_BALANCE_H
|
|
|
|
#include <stdint.h>
|
|
#include "grdc_public_key_index.h"
|
|
#include "../grdl/grdl_unit.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct grdc_account_balance
|
|
{
|
|
grdl_unit balance;
|
|
grdc_public_key_index publicKeyIndex;
|
|
} grdc_account_balance;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // __GRADIDO_BLOCKCHAIN_C_COMPACT_ACCOUNT_BALANCE_H
|