2021-03-22 19:20:51 +01:00
|
|
|
pub const CHAIN_VERSION: u32 = 2;
|
2021-03-10 22:21:50 +01:00
|
|
|
|
2021-03-22 22:57:54 +01:00
|
|
|
pub const ZONE_DIFFICULTY: u32 = 22;
|
|
|
|
|
pub const BLOCK_DIFFICULTY: u32 = 20;
|
|
|
|
|
pub const LOCKER_DIFFICULTY: u32 = 14;
|
2021-03-22 19:20:51 +01:00
|
|
|
pub const KEYSTORE_DIFFICULTY: usize = 23;
|
2021-03-10 22:21:50 +01:00
|
|
|
|
2021-03-23 11:41:50 +01:00
|
|
|
pub const LOCKER_BLOCK_START: u64 = 35;
|
2021-03-22 22:57:54 +01:00
|
|
|
pub const LOCKER_BLOCK_LOCKERS: u64 = 7;
|
2021-03-16 12:24:31 +01:00
|
|
|
pub const LOCKER_BLOCK_SIGNS: u64 = 4;
|
|
|
|
|
pub const LOCKER_BLOCK_TIME: i64 = 300;
|
|
|
|
|
pub const LOCKER_BLOCK_INTERVAL: u64 = 50;
|
2021-03-13 21:04:40 +01:00
|
|
|
|
|
|
|
|
pub const FULL_BLOCKS_INTERVAL: i64 = 86400; // One day in seconds
|
2021-03-16 14:00:14 +01:00
|
|
|
|
2021-03-21 01:31:33 +01:00
|
|
|
pub const ZONE_MAX_LENGTH: usize = 10;
|
|
|
|
|
pub const MAX_RECONNECTS: u32 = 5;
|