Skip to content

Commit

Permalink
Add braces to meet code style on line-after-the-one-changed.
Browse files Browse the repository at this point in the history
Github-Pull: #12368
Rebased-From: 02fc886
Tree-SHA512: 8e159541f5270801fd3c70540ad3c55e93f0ba37039e651d21f65ba9b271bbbb2f1389b13a0f40fea337e88bb1711f498bb3ee1230ec2c40b6530846ff241a8b
  • Loading branch information
TheBlueMatt authored and laanwj committed Feb 8, 2018
1 parent b894755 commit 3f5012b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/validation.cpp
Expand Up @@ -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
Expand Down

0 comments on commit 3f5012b

Please sign in to comment.