Remove no-longer used UI hints in bitcoin core
The Qt UI has its own associated structures for temporary transaction state / cache.
This commit is contained in:
parent
cdcc319c2d
commit
b6c837cbe1
2 changed files with 1 additions and 9 deletions
|
@ -33,7 +33,7 @@ bool TransactionRecord::showTransaction(const CWalletTx &wtx)
|
||||||
QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet *wallet, const CWalletTx &wtx)
|
QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet *wallet, const CWalletTx &wtx)
|
||||||
{
|
{
|
||||||
QList<TransactionRecord> parts;
|
QList<TransactionRecord> parts;
|
||||||
int64 nTime = wtx.nTimeDisplayed = wtx.GetTxTime();
|
int64 nTime = wtx.GetTxTime();
|
||||||
int64 nCredit = wtx.GetCredit(true);
|
int64 nCredit = wtx.GetCredit(true);
|
||||||
int64 nDebit = wtx.GetDebit();
|
int64 nDebit = wtx.GetDebit();
|
||||||
int64 nNet = nCredit - nDebit;
|
int64 nNet = nCredit - nDebit;
|
||||||
|
|
|
@ -326,11 +326,6 @@ public:
|
||||||
mutable int64 nAvailableCreditCached;
|
mutable int64 nAvailableCreditCached;
|
||||||
mutable int64 nChangeCached;
|
mutable int64 nChangeCached;
|
||||||
|
|
||||||
// memory only UI hints
|
|
||||||
mutable unsigned int nTimeDisplayed;
|
|
||||||
mutable int nLinesDisplayed;
|
|
||||||
mutable char fConfirmedDisplayed;
|
|
||||||
|
|
||||||
CWalletTx()
|
CWalletTx()
|
||||||
{
|
{
|
||||||
Init(NULL);
|
Init(NULL);
|
||||||
|
@ -370,9 +365,6 @@ public:
|
||||||
nCreditCached = 0;
|
nCreditCached = 0;
|
||||||
nAvailableCreditCached = 0;
|
nAvailableCreditCached = 0;
|
||||||
nChangeCached = 0;
|
nChangeCached = 0;
|
||||||
nTimeDisplayed = 0;
|
|
||||||
nLinesDisplayed = 0;
|
|
||||||
fConfirmedDisplayed = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
IMPLEMENT_SERIALIZE
|
IMPLEMENT_SERIALIZE
|
||||||
|
|
Loading…
Reference in a new issue