aboutsummaryrefslogtreecommitdiff
path: root/src/qt/addresstablemodel.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2013-08-29 16:19:43 +0200
committerWladimir J. van der Laan <[email protected]>2013-08-29 16:25:51 +0200
commitdcd0b0775ef63ac9e067d9eb67012332f1a72bd7 (patch)
tree1c2b2b4b82d29a63b8ae8174840d1b381d95a62f /src/qt/addresstablemodel.h
parentMerge pull request #2931 from Diapolo/intro (diff)
downloaddiscoin-dcd0b0775ef63ac9e067d9eb67012332f1a72bd7.tar.xz
discoin-dcd0b0775ef63ac9e067d9eb67012332f1a72bd7.zip
qt: Handle address purpose in incremental updates
Correctly use the purpose of addresses that are added after the start of the client. Addresses with purpose "refund" and "change" should not be visible in the GUI. This is now handled correctly.
Diffstat (limited to 'src/qt/addresstablemodel.h')
-rw-r--r--src/qt/addresstablemodel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/addresstablemodel.h b/src/qt/addresstablemodel.h
index 48baff5e5..6f532087f 100644
--- a/src/qt/addresstablemodel.h
+++ b/src/qt/addresstablemodel.h
@@ -85,7 +85,7 @@ signals:
public slots:
/* Update address list from core.
*/
- void updateEntry(const QString &address, const QString &label, bool isMine, int status);
+ void updateEntry(const QString &address, const QString &label, bool isMine, const QString &purpose, int status);
friend class AddressTablePriv;
};