diff options
| author | Pieter Wuille <[email protected]> | 2016-04-28 16:18:45 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-05-17 00:45:58 +0200 |
| commit | b4d24e142e25a21c78ab74146c3520f2259fd7c2 (patch) | |
| tree | 2137ba5f3a179d993e7789815c4c2acdc8971dd6 /src/ui_interface.h | |
| parent | Add -reindex-chainstate that does not rebuild block index (diff) | |
| download | discoin-b4d24e142e25a21c78ab74146c3520f2259fd7c2.tar.xz discoin-b4d24e142e25a21c78ab74146c3520f2259fd7c2.zip | |
Report reindexing progress in GUI
Diffstat (limited to 'src/ui_interface.h')
| -rw-r--r-- | src/ui_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui_interface.h b/src/ui_interface.h index a27918c50..7ebfc17e5 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -96,6 +96,9 @@ public: /** New block has been accepted */ boost::signals2::signal<void (bool, const CBlockIndex *)> NotifyBlockTip; + /** Best header has changed */ + boost::signals2::signal<void (bool, const CBlockIndex *)> NotifyHeaderTip; + /** Banlist did change. */ boost::signals2::signal<void (void)> BannedListChanged; }; |