diff options
author | Jeff Garzik <jgarzik@bitpay.com> | 2014-02-24 14:05:54 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@bitpay.com> | 2014-02-24 14:05:54 -0500 |
commit | beabca2be092d0e2a1de26989d4e63a12cce1284 (patch) | |
tree | 69eb46bc96482946cba614b47530e4244da37cde /src/main.cpp | |
parent | 05619d7290edee3e14780fd92cd72d13578dc228 (diff) | |
parent | 6a4c196dd64da2fd33dc7ae77a8cdd3e4cf0eff1 (diff) |
Merge pull request #3305 from mikehearn/fee_drop
Drop fees by 10x due to the persistently higher exchange rate.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 4c98345d68..53b99101d9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -52,7 +52,7 @@ unsigned int nCoinCacheSize = 5000; /** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */ int64_t CTransaction::nMinTxFee = 10000; // Override with -mintxfee /** Fees smaller than this (in satoshi) are considered zero fee (for relaying) */ -int64_t CTransaction::nMinRelayTxFee = 10000; +int64_t CTransaction::nMinRelayTxFee = 1000; static CMedianFilter<int> cPeerBlockCounts(8, 0); // Amount of blocks that other nodes claim to have |