diff options
| author | Pieter Wuille <[email protected]> | 2012-04-21 16:43:31 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-04-21 16:43:31 -0700 |
| commit | d5eb41fa0816384c00a33b360963fab573592bc1 (patch) | |
| tree | 146def363f14e28d7f88682aa91baaa78d8a229b /src/qt/transactionrecord.cpp | |
| parent | Merge pull request #1121 from gavinandresen/scripttest (diff) | |
| parent | Remove no-longer used UI hints in bitcoin core (diff) | |
| download | discoin-d5eb41fa0816384c00a33b360963fab573592bc1.tar.xz discoin-d5eb41fa0816384c00a33b360963fab573592bc1.zip | |
Merge pull request #1129 from laanwj/2012_04_opcodes
Add explicit numeric constant value for all opcodes
Diffstat (limited to 'src/qt/transactionrecord.cpp')
| -rw-r--r-- | src/qt/transactionrecord.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp index 32350eaa5..90fc5b7da 100644 --- a/src/qt/transactionrecord.cpp +++ b/src/qt/transactionrecord.cpp @@ -33,7 +33,7 @@ bool TransactionRecord::showTransaction(const CWalletTx &wtx) QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet *wallet, const CWalletTx &wtx) { QList<TransactionRecord> parts; - int64 nTime = wtx.nTimeDisplayed = wtx.GetTxTime(); + int64 nTime = wtx.GetTxTime(); int64 nCredit = wtx.GetCredit(true); int64 nDebit = wtx.GetDebit(); int64 nNet = nCredit - nDebit; |