mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
remove unnecessary try-catch
This commit is contained in:
parent
66354e8ecd
commit
0f665bd602
1 changed files with 16 additions and 20 deletions
|
@ -114,7 +114,6 @@ class SubscribableElectrumXClient {
|
|||
);
|
||||
|
||||
// Listen to global event bus for Tor preference changes.
|
||||
try {
|
||||
_torPreferenceListener = bus.on<TorPreferenceChangedEvent>().listen(
|
||||
(event) async {
|
||||
// Close open socket (if open).
|
||||
|
@ -134,9 +133,6 @@ class SubscribableElectrumXClient {
|
|||
_aliveTimer?.cancel();
|
||||
},
|
||||
);
|
||||
} catch (e, s) {
|
||||
print(s);
|
||||
}
|
||||
}
|
||||
|
||||
factory SubscribableElectrumXClient.from({
|
||||
|
|
Loading…
Reference in a new issue