Add braces to meet code style on line-after-the-one-changed.

zcash: cherry picked from commit 02fc8863630a20e75230f8bc3ba1051c480ae560
zcash: https://github.com/bitcoin/bitcoin/pull/12368
This commit is contained in:
Matt Corallo 2018-02-06 14:55:36 -05:00 committed by Larry Ruane
parent a4730c8a0e
commit 829e801fd9
1 changed files with 2 additions and 1 deletions

View File

@ -1484,8 +1484,9 @@ bool AcceptToMemoryPool(
{
AssertLockHeld(cs_main);
LOCK(pool.cs); // mempool "read lock" (held through pool.addUnchecked())
if (pfMissingInputs)
if (pfMissingInputs) {
*pfMissingInputs = false;
}
int nextBlockHeight = chainActive.Height() + 1;