aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2013-04-08 01:50:21 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2013-04-08 01:50:21 -0700
commit1828133c6278eb485744d842801251d99838fb54 (patch)
treed796ca729e7282f4187fc56a82159862044e24b9 /src
parent96371bc6e01e2bf9a6d78b92860160fb6ffd2180 (diff)
parente3800824d6bf7b157a6211cb7eb01ab19a8f5ac0 (diff)
downloadbitcoin-1828133c6278eb485744d842801251d99838fb54.tar.xz
Merge pull request #2403 from gmaxwell/minfee-to-relayfee
Make MIN_TX_FEE match MIN_RELAY_TX_FEE.
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 c6bd77d3dc..303588306d 100644
--- a/src/main.h
+++ b/src/main.h
@@ -45,7 +45,7 @@ static const unsigned int UNDOFILE_CHUNK_SIZE = 0x100000; // 1 MiB
/** Fake height value used in CCoins to signify they are only in the memory pool (since 0.8) */
static const unsigned int MEMPOOL_HEIGHT = 0x7FFFFFFF;
/** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */
-static const int64 MIN_TX_FEE = 50000;
+static const int64 MIN_TX_FEE = 10000;
/** Fees smaller than this (in satoshi) are considered zero fee (for relaying) */
static const int64 MIN_RELAY_TX_FEE = 10000;
/** No amount larger than this (in satoshi) is valid */