Files
node-cryptoforknote-util-mo/src/cryptonote_config.h

23 lines
826 B
C
Raw Normal View History

2014-05-15 12:20:48 +01:00
#pragma once
#define CRYPTONOTE_PUBLIC_ADDRESS_TEXTBLOB_VER 0
2018-03-25 00:50:36 +01:00
#define CURRENT_TRANSACTION_VERSION 1
2014-05-15 12:20:48 +01:00
#define CURRENT_BLOCK_MAJOR_VERSION 1
#define CURRENT_BLOCK_MINOR_VERSION 0
#define BLOCK_MAJOR_VERSION_1 1
2018-03-25 00:50:36 +01:00
#define BLOCK_MAJOR_VERSION_2 2
#define BLOCK_MAJOR_VERSION_3 3
2014-05-15 12:20:48 +01:00
#define COIN ((uint64_t)100000000) // pow(10, 8)
#define DEFAULT_FEE ((uint64_t)1000000) // pow(10, 6)
#define CRYPTONOTE_MINED_MONEY_UNLOCK_WINDOW 60
#define CRYPTONOTE_DISPLAY_DECIMAL_POINT 12
2018-03-25 14:06:12 +02:00
enum BLOB_TYPE {
BLOB_TYPE_CRYPTONOTE = 0,
BLOB_TYPE_FORKNOTE1 = 1,
BLOB_TYPE_FORKNOTE2 = 2,
};