mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Avoid callback when -blocknotify is empty
This commit is contained in:
parent
4631dc5c57
commit
413e0d1d31
1 changed files with 9 additions and 14 deletions
23
src/init.cpp
23
src/init.cpp
|
@ -1828,20 +1828,15 @@ bool AppInitMain(const util::Ref& context, NodeContext& node, interfaces::BlockA
|
|||
}
|
||||
|
||||
#if HAVE_SYSTEM
|
||||
if (args.IsArgSet("-blocknotify")) {
|
||||
const std::string block_notify = args.GetArg("-blocknotify", "");
|
||||
const auto BlockNotifyCallback = [block_notify](SynchronizationState sync_state, const CBlockIndex* pBlockIndex) {
|
||||
if (sync_state != SynchronizationState::POST_INIT || !pBlockIndex)
|
||||
return;
|
||||
|
||||
std::string strCmd = block_notify;
|
||||
if (!strCmd.empty()) {
|
||||
boost::replace_all(strCmd, "%s", pBlockIndex->GetBlockHash().GetHex());
|
||||
std::thread t(runCommand, strCmd);
|
||||
t.detach(); // thread runs free
|
||||
}
|
||||
};
|
||||
uiInterface.NotifyBlockTip_connect(BlockNotifyCallback);
|
||||
const std::string block_notify = args.GetArg("-blocknotify", "");
|
||||
if (!block_notify.empty()) {
|
||||
uiInterface.NotifyBlockTip_connect([block_notify](SynchronizationState sync_state, const CBlockIndex* pBlockIndex) {
|
||||
if (sync_state != SynchronizationState::POST_INIT || !pBlockIndex) return;
|
||||
std::string command = block_notify;
|
||||
boost::replace_all(command, "%s", pBlockIndex->GetBlockHash().GetHex());
|
||||
std::thread t(runCommand, command);
|
||||
t.detach(); // thread runs free
|
||||
});
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue