diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-04-16 11:44:05 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-04-17 18:28:02 +0200 |
commit | 7fa3ad83a9060d4ebdb29f39e48eec7ea2220d98 (patch) | |
tree | a878c696d4b0c3d080cfbbe4960e44d63891f6a6 /src/qt | |
parent | 4941aad6574c85d7c4cdf80a7faef48bc46add5f (diff) |
Remove unused and unreachable code
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/transactionrecord.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp index 57210dcc02..2f3b29cc97 100644 --- a/src/qt/transactionrecord.cpp +++ b/src/qt/transactionrecord.cpp @@ -146,12 +146,6 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet * // // Mixed debit transaction, can't break down payees // - bool fAllMine = true; - BOOST_FOREACH(const CTxOut& txout, wtx.vout) - fAllMine = fAllMine && wallet->IsMine(txout); - BOOST_FOREACH(const CTxIn& txin, wtx.vin) - fAllMine = fAllMine && wallet->IsMine(txin); - parts.append(TransactionRecord(hash, nTime, TransactionRecord::Other, "", nNet, 0)); } } |