Skip to content

Commit 433c57a

Browse files
committed
Merge #10421: [qt] Remove excess logic: Prefer "return foo;" to "if (foo) { return true; } else { return false; }"
e49b868 [qt] Remove excess logic (practicalswift) Tree-SHA512: ffcdc94843ea5ddd05ab5acec1f047def8d910da8f53c5019ec49199828d7c370efaedc801537b8e1f44e87f694d19d04b70c240416d2eddfaff9cd4abe3ca07
2 parents 15254e9 + e49b868 commit 433c57a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/qt/walletmodel.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -702,9 +702,7 @@ bool WalletModel::transactionSignalsRBF(uint256 hash) const
702702
{
703703
LOCK2(cs_main, wallet->cs_wallet);
704704
const CWalletTx *wtx = wallet->GetWalletTx(hash);
705-
if (wtx && SignalsOptInRBF(*wtx))
706-
return true;
707-
return false;
705+
return wtx && SignalsOptInRBF(*wtx);
708706
}
709707

710708
bool WalletModel::bumpFee(uint256 hash)

0 commit comments

Comments
 (0)