mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-23 19:05:51 +00:00
mutex release bugfix
This commit is contained in:
parent
2cf5e01d58
commit
cdee218133
1 changed files with 3 additions and 1 deletions
|
@ -123,7 +123,9 @@ class ElectrumX {
|
||||||
|
|
||||||
case TorConnectionStatus.connected:
|
case TorConnectionStatus.connected:
|
||||||
case TorConnectionStatus.disconnected:
|
case TorConnectionStatus.disconnected:
|
||||||
_torConnectingLock.release();
|
if (_torConnectingLock.isLocked) {
|
||||||
|
_torConnectingLock.release();
|
||||||
|
}
|
||||||
_requireMutex = false;
|
_requireMutex = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue