aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-04-15 13:27:00 +0200
committerLuke Dashjr <luke-jr+git@utopios.org>2012-04-15 19:43:41 -0400
commit8460185dec74383b1e49500683cfc7aa9ceba554 (patch)
tree1b8bde4e173a0340c3c2940bdabbb48797c87fad /src/main.h
parent678a319888f88cf5bae2312afc3ba73533c0f901 (diff)
downloadbitcoin-8460185dec74383b1e49500683cfc7aa9ceba554.tar.xz
fix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h
index e6f60a6a8d..b0f713e876 100644
--- a/src/main.h
+++ b/src/main.h
@@ -572,9 +572,11 @@ public:
// To limit dust spam, require MIN_TX_FEE/MIN_RELAY_TX_FEE if any output is less than 0.01
if (nMinFee < nBaseFee)
+ {
BOOST_FOREACH(const CTxOut& txout, vout)
if (txout.nValue < CENT)
nMinFee = nBaseFee;
+ }
// Raise the price as the block approaches full
if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2)