mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
refactor: Pass SynchronizationState enum to GUI
Co-authored-by: Russell Yanofsky <russ@yanofsky.org>
This commit is contained in:
parent
2bec309ad6
commit
1dab574edf
8 changed files with 35 additions and 16 deletions
|
|
@ -605,9 +605,9 @@ std::string LicenseInfo()
|
|||
}
|
||||
|
||||
#if HAVE_SYSTEM
|
||||
static void BlockNotifyCallback(bool initialSync, const CBlockIndex *pBlockIndex)
|
||||
static void BlockNotifyCallback(SynchronizationState sync_state, const CBlockIndex* pBlockIndex)
|
||||
{
|
||||
if (initialSync || !pBlockIndex)
|
||||
if (sync_state != SynchronizationState::POST_INIT || !pBlockIndex)
|
||||
return;
|
||||
|
||||
std::string strCmd = gArgs.GetArg("-blocknotify", "");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue