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/core.h | |
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/core.h')
-rw-r--r-- | src/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.h b/src/core.h index e61cad90ec..5eb953610d 100644 --- a/src/core.h +++ b/src/core.h @@ -156,8 +156,8 @@ public: // to spend something, then we consider it dust. // A typical txout is 34 bytes big, and will // need a CTxIn of at least 148 bytes to spend, - // so dust is a txout less than 54 uBTC - // (5460 satoshis) with default nMinRelayTxFee + // so dust is a txout less than 546 satoshis + // with default nMinRelayTxFee. return ((nValue*1000)/(3*((int)GetSerializeSize(SER_DISK,0)+148)) < nMinRelayTxFee); } |