aboutsummaryrefslogtreecommitdiff
path: root/src/libwalletqt/Wallet.cpp
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-01-12 19:57:30 +0100
committerJaquee <jaquee.monero@gmail.com>2017-01-14 00:45:09 +0100
commit205bfcdd7bf051440cda231fc49e7f58d8c1a7ee (patch)
treef3fedbc7964bb9585b5ab901eb6388e00821549b /src/libwalletqt/Wallet.cpp
parent593839a374f6fb69df84d1cda5261ed246e9028f (diff)
downloadmonzero-gui-205bfcdd7bf051440cda231fc49e7f58d8c1a7ee.tar.gz
monzero-gui-205bfcdd7bf051440cda231fc49e7f58d8c1a7ee.tar.xz
monzero-gui-205bfcdd7bf051440cda231fc49e7f58d8c1a7ee.zip
History: Show num of confirmations + unconfirmed payments
history: refresh on new block
Diffstat (limited to 'src/libwalletqt/Wallet.cpp')
-rw-r--r--src/libwalletqt/Wallet.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libwalletqt/Wallet.cpp b/src/libwalletqt/Wallet.cpp
index 5bf75788..62c71110 100644
--- a/src/libwalletqt/Wallet.cpp
+++ b/src/libwalletqt/Wallet.cpp
@@ -44,6 +44,12 @@ public:
emit m_wallet->moneyReceived(QString::fromStdString(txId), amount);
}
+ virtual void unconfirmedMoneyReceived(const std::string &txId, uint64_t amount)
+ {
+ qDebug() << __FUNCTION__;
+ emit m_wallet->unconfirmedMoneyReceived(QString::fromStdString(txId), amount);
+ }
+
virtual void newBlock(uint64_t height)
{
// qDebug() << __FUNCTION__;