diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-08-29 16:19:43 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-08-29 16:25:51 +0200 |
| commit | dcd0b0775ef63ac9e067d9eb67012332f1a72bd7 (patch) | |
| tree | 1c2b2b4b82d29a63b8ae8174840d1b381d95a62f /src/qt/addresstablemodel.h | |
| parent | Merge pull request #2931 from Diapolo/intro (diff) | |
| download | discoin-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.h | 2 |
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; }; |