From 1290fc052798b9dba8f014143c0a6ee3e12fbc95 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sat, 29 Oct 2016 14:35:28 -0300 Subject: [PATCH] test --- src/consensus/consensus.h | 2 +- src/komodo_globals.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/consensus/consensus.h b/src/consensus/consensus.h index 7fc20d7fc..d9f24db11 100644 --- a/src/consensus/consensus.h +++ b/src/consensus/consensus.h @@ -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 { diff --git a/src/komodo_globals.h b/src/komodo_globals.h index 119a722ef..11062e866 100644 --- a/src/komodo_globals.h +++ b/src/komodo_globals.h @@ -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];