diff options
| author | Bushstar <[email protected]> | 2020-01-21 14:07:42 +0000 |
|---|---|---|
| committer | Bushstar <[email protected]> | 2020-01-21 14:07:42 +0000 |
| commit | e80317be5fc6f6a04ea3b35bfe9991b3a5d29f7a (patch) | |
| tree | abe90803853d8f9b300e23570c7eb0b09716ebe1 /src/checkqueue.h | |
| parent | Merge #17916: windows: Enable heap terminate-on-corruption (diff) | |
| download | discoin-e80317be5fc6f6a04ea3b35bfe9991b3a5d29f7a.tar.xz discoin-e80317be5fc6f6a04ea3b35bfe9991b3a5d29f7a.zip | |
refactor: Remove redundant conditional
Diffstat (limited to 'src/checkqueue.h')
| -rw-r--r-- | src/checkqueue.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/checkqueue.h b/src/checkqueue.h index 978e23a7c..9dab5a09a 100644 --- a/src/checkqueue.h +++ b/src/checkqueue.h @@ -90,8 +90,7 @@ private: nTotal--; bool fRet = fAllOk; // reset the status for new work later - if (fMaster) - fAllOk = true; + fAllOk = true; // return the current status return fRet; } |