mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 02:25:40 +01:00
Merge #17971: refactor: Remove redundant conditional
e80317be5f
refactor: Remove redundant conditional (Bushstar) Pull request description: Conditional check against fMaster is now redundant as it is already checked as true. This originally made sense as the outer conditional was:f9cae832e6/src/checkqueue.h (L86)
Removal of fQuit happened in the commit below.30ded3e3d8 (diff-88316c9aa9514c038c9304297e672da5)
ACKs for top commit: theStack: ACKe80317be5f
hebasto: ACKe80317be5f
, I have reviewed the code, and it looks OK, I agree it can be merged. promag: ACKe80317be5f
. emilengler: re-ACKe80317be5f
practicalswift: ACKe80317be5f
Empact: ACKe80317be5f
Tree-SHA512: 136ea1d02e3d65100a8758730617ccede7864e08e8404e42e65d45d4bf95a3bfea2ab9895c6e8833abd654557d3efbba02b25297a2a5eefc36a11e97bbe9134f
This commit is contained in:
commit
e061b8dc8f
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user