mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-23 11:04:33 +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.disconnected:
|
||||
_torConnectingLock.release();
|
||||
if (_torConnectingLock.isLocked) {
|
||||
_torConnectingLock.release();
|
||||
}
|
||||
_requireMutex = false;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue