change some stuff
This commit is contained in:
@@ -3,7 +3,8 @@
|
|||||||
#include "notarisationdb.h"
|
#include "notarisationdb.h"
|
||||||
#include "notaries_STAKED.h"
|
#include "notaries_STAKED.h"
|
||||||
|
|
||||||
//extern char *notaries_STAKED;
|
extern const char *notaries_STAKED[][2];
|
||||||
|
extern const int num_notaries_STAKED;
|
||||||
|
|
||||||
int GetSymbolAuthority(const char* symbol)
|
int GetSymbolAuthority(const char* symbol)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -22,7 +22,8 @@
|
|||||||
|
|
||||||
#define KOMODO_MAINNET_START 178999
|
#define KOMODO_MAINNET_START 178999
|
||||||
|
|
||||||
//extern char *notaries_STAKED;
|
extern const char *notaries_STAKED[][2];
|
||||||
|
extern const int num_notaries_STAKED;
|
||||||
|
|
||||||
const char *Notaries_genesis[][2] =
|
const char *Notaries_genesis[][2] =
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#include "notaries_STAKED.h"
|
#include "notaries_STAKED.h"
|
||||||
|
|
||||||
const char *notaries_STAKED[][2] =
|
/*const char *notaries_STAKED[][2] =
|
||||||
{
|
{
|
||||||
{"blackjok3r", "021914947402d936a89fbdd1b12be49eb894a1568e5e17bb18c8a6cffbd3dc106e" }, // RTVti13NP4eeeZaCCmQxc2bnPdHxCJFP9x
|
{"blackjok3r", "021914947402d936a89fbdd1b12be49eb894a1568e5e17bb18c8a6cffbd3dc106e" }, // RTVti13NP4eeeZaCCmQxc2bnPdHxCJFP9x
|
||||||
{"alright", "0285657c689b903218c97f5f10fe1d10ace2ed6595112d9017f54fb42ea1c1dda8" }, //RXmXeQ8LfJK6Y1aTM97cRz9Gu5f6fmR3sg
|
{"alright", "0285657c689b903218c97f5f10fe1d10ace2ed6595112d9017f54fb42ea1c1dda8" }, //RXmXeQ8LfJK6Y1aTM97cRz9Gu5f6fmR3sg
|
||||||
@@ -20,6 +20,7 @@ const char *notaries_STAKED[][2] =
|
|||||||
{"alrighttest", "02e9dfe248f453b499315a90375e58a1c9ad79f5f3932ecb2205399a0f262d65fc" }, // RBevSstS8JtDXMEFNcJws4QTYN4PcE2VL5
|
{"alrighttest", "02e9dfe248f453b499315a90375e58a1c9ad79f5f3932ecb2205399a0f262d65fc" }, // RBevSstS8JtDXMEFNcJws4QTYN4PcE2VL5
|
||||||
{"alrighttest1", "03527c7ecd6a8c5db6d685a64e6e18c1edb49e2f057a434f56c3f1253a26e9c6a2" }, // RBw2jNU3dnGk86ZLqPMadJwRwg3NU8eC6s
|
{"alrighttest1", "03527c7ecd6a8c5db6d685a64e6e18c1edb49e2f057a434f56c3f1253a26e9c6a2" }, // RBw2jNU3dnGk86ZLqPMadJwRwg3NU8eC6s
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
bool is_STAKED() {
|
bool is_STAKED() {
|
||||||
bool STAKED = 0;
|
bool STAKED = 0;
|
||||||
@@ -28,4 +29,4 @@ bool is_STAKED() {
|
|||||||
return(STAKED)
|
return(STAKED)
|
||||||
};
|
};
|
||||||
|
|
||||||
const 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));
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
#ifndef NOTARIES_STAKED_H
|
#ifndef NOTARIES_STAKED_H
|
||||||
#define NOTARIES_STAKED_H
|
#define NOTARIES_STAKED_H
|
||||||
|
|
||||||
extern const char *notaries_STAKED[][2];
|
//extern const char *notaries_STAKED[][2];
|
||||||
extern const int num_notaries_STAKED;
|
//extern const int num_notaries_STAKED;
|
||||||
|
|
||||||
bool is_STAKED();
|
bool is_STAKED();
|
||||||
|
|
||||||
/*const char *notaries_STAKED[][2] =
|
const char *notaries_STAKED[][2] =
|
||||||
{
|
{
|
||||||
{"blackjok3r", "021914947402d936a89fbdd1b12be49eb894a1568e5e17bb18c8a6cffbd3dc106e" }, // RTVti13NP4eeeZaCCmQxc2bnPdHxCJFP9x
|
{"blackjok3r", "021914947402d936a89fbdd1b12be49eb894a1568e5e17bb18c8a6cffbd3dc106e" }, // RTVti13NP4eeeZaCCmQxc2bnPdHxCJFP9x
|
||||||
{"alright", "0285657c689b903218c97f5f10fe1d10ace2ed6595112d9017f54fb42ea1c1dda8" }, //RXmXeQ8LfJK6Y1aTM97cRz9Gu5f6fmR3sg
|
{"alright", "0285657c689b903218c97f5f10fe1d10ace2ed6595112d9017f54fb42ea1c1dda8" }, //RXmXeQ8LfJK6Y1aTM97cRz9Gu5f6fmR3sg
|
||||||
@@ -25,5 +25,8 @@ bool is_STAKED();
|
|||||||
{"kmdkrazy", "02f7597468703c1c5c8465dd6d43acaae697df9df30bed21494d193412a1ea193e" }, // RWHGbrLSP89fTzNVF9U9xiekDYJqcibTca
|
{"kmdkrazy", "02f7597468703c1c5c8465dd6d43acaae697df9df30bed21494d193412a1ea193e" }, // RWHGbrLSP89fTzNVF9U9xiekDYJqcibTca
|
||||||
{"alrighttest", "02e9dfe248f453b499315a90375e58a1c9ad79f5f3932ecb2205399a0f262d65fc" }, // RBevSstS8JtDXMEFNcJws4QTYN4PcE2VL5
|
{"alrighttest", "02e9dfe248f453b499315a90375e58a1c9ad79f5f3932ecb2205399a0f262d65fc" }, // RBevSstS8JtDXMEFNcJws4QTYN4PcE2VL5
|
||||||
{"alrighttest1", "03527c7ecd6a8c5db6d685a64e6e18c1edb49e2f057a434f56c3f1253a26e9c6a2" }, // RBw2jNU3dnGk86ZLqPMadJwRwg3NU8eC6s
|
{"alrighttest1", "03527c7ecd6a8c5db6d685a64e6e18c1edb49e2f057a434f56c3f1253a26e9c6a2" }, // RBw2jNU3dnGk86ZLqPMadJwRwg3NU8eC6s
|
||||||
};*/
|
};
|
||||||
|
|
||||||
|
const int num_notaries_STAKED = (int32_t)(sizeof(notaries_STAKED)/sizeof(*notaries_STAKED));
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
Reference in New Issue
Block a user