]> Git Repo - VerusCoin.git/blob - src/komodo_defs.h
Merge branch 'dev' of github.com:miketout/VerusCoin into dev
[VerusCoin.git] / src / komodo_defs.h
1 #ifndef KOMODO_DEFS_H
2 #define KOMODO_DEFS_H
3
4 #define ASSETCHAINS_MINHEIGHT 128
5 #define ASSETCHAINS_MAX_ERAS 3
6 #define KOMODO_ELECTION_GAP 2000
7 #define ROUNDROBIN_DELAY 61
8 #define KOMODO_ASSETCHAIN_MAXLEN 65
9 #define KOMODO_LIMITED_NETWORKSIZE 4
10 #define IGUANA_MAXSCRIPTSIZE 10001
11 #define KOMODO_MAXMEMPOOLTIME 3600 // affects consensus
12 #define CRYPTO777_PUBSECPSTR "020e46e79a2a8d12b9b5d12c7a91adb4e454edfae43c0a0cb805427d2ac7613fd9"
13
14 // putting it here to avoid header conflicts
15 union _bits256 { uint8_t bytes[32]; uint16_t ushorts[16]; uint32_t uints[8]; uint64_t ulongs[4]; uint64_t txid; };
16 typedef union _bits256 bits256;
17
18 #endif
This page took 0.021605 seconds and 4 git commands to generate.