Skip to content

Commit 02fc886

Browse files
committed
Add braces to meet code style on line-after-the-one-changed.
1 parent 85aa839 commit 02fc886

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/validation.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,8 +548,9 @@ static bool AcceptToMemoryPoolWorker(const CChainParams& chainparams, CTxMemPool
548548
const uint256 hash = tx.GetHash();
549549
AssertLockHeld(cs_main);
550550
LOCK(pool.cs); // mempool "read lock" (held through GetMainSignals().TransactionAddedToMempool())
551-
if (pfMissingInputs)
551+
if (pfMissingInputs) {
552552
*pfMissingInputs = false;
553+
}
553554

554555
if (!CheckTransaction(tx, state))
555556
return false; // state filled in by CheckTransaction

0 commit comments

Comments
 (0)