diff options
| author | Max K. <[email protected]> | 2015-08-13 18:41:49 +0200 |
|---|---|---|
| committer | Max K. <[email protected]> | 2015-08-13 18:41:49 +0200 |
| commit | 1027b821df35fbf2e7a05bfe39e0e9cdb90e9cd5 (patch) | |
| tree | e4a4c4b56f4c3ee6e207dded5d448c8f7d7c1ee6 /src/ui_interface.h | |
| parent | Merge pull request #1233 from patricklodder/1.10-travis-osx-sdk (diff) | |
| parent | advertise block height addition to -blocknotify (diff) | |
| download | discoin-1027b821df35fbf2e7a05bfe39e0e9cdb90e9cd5.tar.xz discoin-1027b821df35fbf2e7a05bfe39e0e9cdb90e9cd5.zip | |
Merge pull request #1238 from rnicoll/1.10-block-notify-height
Add block height to block notification
Diffstat (limited to 'src/ui_interface.h')
| -rw-r--r-- | src/ui_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui_interface.h b/src/ui_interface.h index 32a92a4b8..34ac7bf3b 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -94,7 +94,7 @@ public: boost::signals2::signal<void (const std::string &title, int nProgress)> ShowProgress; /** New block has been accepted */ - boost::signals2::signal<void (const uint256& hash)> NotifyBlockTip; + boost::signals2::signal<void (const uint256& hash, const int nHeight)> NotifyBlockTip; }; extern CClientUIInterface uiInterface; |