aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-05-23 18:45:57 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2017-05-23 18:46:27 +0200
commit433c57aa6f304153f1b8740e0aa11b297f7fd143 (patch)
tree49eec56215a5244ca9cc8e1a31601118347edfe7 /src/qt
parent15254e907e8c5c1fa4415ecb94ddb8330a4c2868 (diff)
parente49b868cfe9391ec61b4fedef9811a4be265525d (diff)
downloadbitcoin-433c57aa6f304153f1b8740e0aa11b297f7fd143.tar.xz
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
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/walletmodel.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp
index 37af8abb38..1c08637457 100644
--- a/src/qt/walletmodel.cpp
+++ b/src/qt/walletmodel.cpp
@@ -702,9 +702,7 @@ bool WalletModel::transactionSignalsRBF(uint256 hash) const
{
LOCK2(cs_main, wallet->cs_wallet);
const CWalletTx *wtx = wallet->GetWalletTx(hash);
- if (wtx && SignalsOptInRBF(*wtx))
- return true;
- return false;
+ return wtx && SignalsOptInRBF(*wtx);
}
bool WalletModel::bumpFee(uint256 hash)