From 829e801fd9e80ca2e5fb299c5957b9d083caf6ee Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 6 Feb 2018 14:55:36 -0500 Subject: [PATCH] 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 --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index abdcbf5f6..12eb94616 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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;