diff options
author | Matt Corallo <git@bluematt.me> | 2018-02-06 14:55:36 -0500 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2018-02-06 14:55:36 -0500 |
commit | 02fc8863630a20e75230f8bc3ba1051c480ae560 (patch) | |
tree | 371045b7e7db2765970eed343aa0bed78c93adff | |
parent | 85aa8398f5d13c659299b81cdae377462b4f8316 (diff) |
Add braces to meet code style on line-after-the-one-changed.
-rw-r--r-- | src/validation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index a8b41d16e6..eb8599b769 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -548,8 +548,9 @@ static bool AcceptToMemoryPoolWorker(const CChainParams& chainparams, CTxMemPool const uint256 hash = tx.GetHash(); AssertLockHeld(cs_main); LOCK(pool.cs); // mempool "read lock" (held through GetMainSignals().TransactionAddedToMempool()) - if (pfMissingInputs) + if (pfMissingInputs) { *pfMissingInputs = false; + } if (!CheckTransaction(tx, state)) return false; // state filled in by CheckTransaction |