| 1542 | } |
| 1543 | |
| 1544 | int64_t CWalletTx::GetTxTime() const |
| 1545 | { |
| 1546 | int64_t n = nTimeSmart; |
| 1547 | return n ? n : nTimeReceived; |
| 1548 | } |
| 1549 | |
| 1550 | void CWalletTx::GetAmounts(list<COutputEntry>& listReceived, list<COutputEntry>& listSent, CAmount& nFee, string& strSentAccount, const isminefilter& filter) const |
| 1551 | { |
no outgoing calls
no test coverage detected