]>
Commit | Line | Data |
---|---|---|
74329e19 MT |
1 | |
2 | // Copyright (c) 2018 The Verus developers | |
3 | // Distributed under the MIT software license, see the accompanying | |
4 | // file COPYING or http://www.opensource.org/licenses/mit-license.php. | |
5 | ||
6 | #ifndef VERUS_LAUNCH_H | |
7 | #define VERUS_LAUNCH_H | |
8 | ||
9 | #include <string> | |
10 | ||
c6e21843 | 11 | #define WHITELIST_COUNT 704 |
74329e19 MT |
12 | |
13 | extern const char *whitelist_ids[WHITELIST_COUNT]; | |
c6e21843 MT |
14 | extern const char *whitelist_address; |
15 | extern uint64_t whitelist_masks[WHITELIST_COUNT]; | |
74329e19 MT |
16 | |
17 | #endif |