This commit is contained in:
blackjok3r
2018-09-21 03:16:35 +08:00
parent 0f02546428
commit 41c25e89db
2 changed files with 2 additions and 2 deletions

View File

@@ -28,4 +28,4 @@ bool is_STAKED() {
return(STAKED)
};
int num_notaries_STAKED = (int32_t)(sizeof(notaries_STAKED)/sizeof(*notaries_STAKED));
const int num_notaries_STAKED = (int32_t)(sizeof(notaries_STAKED)/sizeof(*notaries_STAKED));

View File

@@ -2,7 +2,7 @@
//#define NOTARIES_STAKED_H
extern const char *notaries_STAKED[][2];
extern int num_notaries_STAKED;
extern const int num_notaries_STAKED;
bool is_STAKED();