mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-29 10:19:26 +02:00
Fixes ZMQ startup with bad arguments.
This commit is contained in:
@ -100,7 +100,6 @@ bool CZMQNotificationInterface::Initialize()
|
|||||||
|
|
||||||
if (i!=notifiers.end())
|
if (i!=notifiers.end())
|
||||||
{
|
{
|
||||||
Shutdown();
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,6 +69,7 @@ bool CZMQAbstractPublishNotifier::Initialize(void *pcontext)
|
|||||||
if (rc!=0)
|
if (rc!=0)
|
||||||
{
|
{
|
||||||
zmqError("Failed to bind address");
|
zmqError("Failed to bind address");
|
||||||
|
zmq_close(psocket);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user