diff options
author | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2017-05-09 15:46:26 +0900 |
---|---|---|
committer | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2017-05-09 15:46:26 +0900 |
commit | 5a5e4e9cc19e30186ba0a15a1cf892516d419baf (patch) | |
tree | dd937f14c45ed899f4af1d0c941705e0e10cd38a /src/qt/transactiondesc.cpp | |
parent | 6a796b2b53fe542e0f340f250f4f20d69efed8d0 (diff) |
[wallet] Remove CTransaction&() helper conversion operator from wallet implementation.
Diffstat (limited to 'src/qt/transactiondesc.cpp')
-rw-r--r-- | src/qt/transactiondesc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp index d81188895b..08077f2da4 100644 --- a/src/qt/transactiondesc.cpp +++ b/src/qt/transactiondesc.cpp @@ -24,7 +24,7 @@ QString TransactionDesc::FormatTxStatus(const CWalletTx& wtx) { AssertLockHeld(cs_main); - if (!CheckFinalTx(wtx)) + if (!CheckFinalTx(*wtx.tx)) { if (wtx.tx->nLockTime < LOCKTIME_THRESHOLD) return tr("Open for %n more block(s)", "", wtx.tx->nLockTime - chainActive.Height()); |