18 lines
327 B
C
18 lines
327 B
C
#ifndef RUNTIME_STATE_H
|
|
#define RUNTIME_STATE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <uint256.h>
|
|
|
|
#include <block/chain.h>
|
|
|
|
extern uint64_t currentBlockHeight;
|
|
extern blockchain_t* currentChain;
|
|
extern uint256_t currentSupply;
|
|
extern uint64_t currentReward;
|
|
extern uint32_t difficultyTarget;
|
|
extern const char* chainDataDir;
|
|
|
|
#endif
|