This commit is contained in:
jl777 2016-10-29 14:35:28 -03:00
parent eda3ca9326
commit 1290fc0527
2 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,7 @@ static const unsigned int MAX_BLOCK_SIGOPS = 20000;
/** The maximum size of a transaction (network rule) */
static const unsigned int MAX_TX_SIZE = 100000;
/** Coinbase transaction outputs can only be spent after this number of new blocks (network rule) */
int COINBASE_MATURITY = 100;
extern int COINBASE_MATURITY;
/** Flags for LockTime() */
enum {

View File

@ -13,6 +13,8 @@
* *
******************************************************************************/
int COINBASE_MATURITY = 100;
int32_t IS_KOMODO_NOTARY,USE_EXTERNAL_PUBKEY;
std::string NOTARY_PUBKEY;
uint8_t NOTARY_PUBKEY33[33];