diff options
| author | Jeff Garzik <[email protected]> | 2014-02-24 14:05:54 -0500 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2014-02-24 14:05:54 -0500 |
| commit | beabca2be092d0e2a1de26989d4e63a12cce1284 (patch) | |
| tree | 69eb46bc96482946cba614b47530e4244da37cde /src/main.cpp | |
| parent | Merge pull request #3700 from gavinandresen/backuptest (diff) | |
| parent | Drop fees by 10x due to the persistently higher exchange rate. (diff) | |
| download | discoin-beabca2be092d0e2a1de26989d4e63a12cce1284.tar.xz discoin-beabca2be092d0e2a1de26989d4e63a12cce1284.zip | |
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 4c98345d6..53b99101d 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 |