aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorroot <root@biggerCPU.(none)>2013-12-15 13:31:28 -0500
committerroot <root@biggerCPU.(none)>2013-12-15 13:31:28 -0500
commit3b002248ec920f75fcd2cccdb69bc23a7da4eadc (patch)
tree79f8ad716a582723f3dc005b5d98d3cd61ad93a9 /src
parentmake not overflow (diff)
downloadarchived-discoin-3b002248ec920f75fcd2cccdb69bc23a7da4eadc.tar.xz
archived-discoin-3b002248ec920f75fcd2cccdb69bc23a7da4eadc.zip
revert change, much confuse. transaction cap at 500M. may change in future
Diffstat (limited to 'src')
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index 7860b9c64..c5777c615 100644
--- a/src/main.h
+++ b/src/main.h
@@ -33,7 +33,7 @@ static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
static const int64 MIN_TX_FEE = 10000;
static const int64 MIN_RELAY_TX_FEE = MIN_TX_FEE;
-static const int64 MAX_MONEY = 10000000000 * COIN; // DogeCoin: maximum of 100B coins (given some randomness)
+static const int64 MAX_MONEY = 500000000 * COIN; // DogeCoin: maximum of 100B coins (given some randomness), max transaction 500,000,000 for now
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
static const int COINBASE_MATURITY = 30;
// Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.