From 7cc3c0a9c018a6647d16937c0cc69375c25e3d4a Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Tue, 26 Nov 2013 14:45:34 -1000 Subject: [PATCH] Litecoin: Reduce default mintxfee to 0.001 --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index e2cbb9bc7..335726a2c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -49,9 +49,9 @@ bool fTxIndex = false; unsigned int nCoinCacheSize = 5000; /** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */ -int64 CTransaction::nMinTxFee = 2000000; +int64 CTransaction::nMinTxFee = 100000; /** Fees smaller than this (in satoshi) are considered zero fee (for relaying) */ -int64 CTransaction::nMinRelayTxFee = 2000000; +int64 CTransaction::nMinRelayTxFee = 100000; CMedianFilter cPeerBlockCounts(8, 0); // Amount of blocks that other nodes claim to have