mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
Add braces to meet code style on line-after-the-one-changed.
This commit is contained in:
parent
85aa8398f5
commit
02fc886363
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue