mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 18:44:31 +00:00
don't subscribeBlockHeaders if subscription exists
This commit is contained in:
parent
3d42967c8b
commit
46285d44ea
1 changed files with 28 additions and 28 deletions
|
@ -833,39 +833,39 @@ mixin ElectrumXInterface<T extends Bip39HDCurrency> on Bip39HDWallet<T> {
|
|||
if (_latestHeight != null) {
|
||||
return _latestHeight!;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Make sure we only complete once.
|
||||
bool isFirstResponse = true;
|
||||
|
||||
// Make sure we only complete once.
|
||||
bool isFirstResponse = true;
|
||||
// Subscribe to block headers.
|
||||
final subscription =
|
||||
subscribableElectrumXClient.subscribeToBlockHeaders();
|
||||
|
||||
// Subscribe to block headers.
|
||||
final subscription =
|
||||
subscribableElectrumXClient.subscribeToBlockHeaders();
|
||||
// set stream subscription
|
||||
ElectrumxChainHeightService.subscriptions[cryptoCurrency.coin] =
|
||||
subscription.responseStream.asBroadcastStream().listen((event) {
|
||||
final response = event;
|
||||
if (response != null &&
|
||||
response is Map &&
|
||||
response.containsKey('height')) {
|
||||
final int chainHeight = response['height'] as int;
|
||||
// print("Current chain height: $chainHeight");
|
||||
_latestHeight = chainHeight;
|
||||
|
||||
// set stream subscription
|
||||
ElectrumxChainHeightService.subscriptions[cryptoCurrency.coin] ??=
|
||||
subscription.responseStream.asBroadcastStream().listen((event) {
|
||||
final response = event;
|
||||
if (response != null &&
|
||||
response is Map &&
|
||||
response.containsKey('height')) {
|
||||
final int chainHeight = response['height'] as int;
|
||||
// print("Current chain height: $chainHeight");
|
||||
_latestHeight = chainHeight;
|
||||
if (isFirstResponse) {
|
||||
isFirstResponse = false;
|
||||
|
||||
if (isFirstResponse) {
|
||||
isFirstResponse = false;
|
||||
|
||||
// Return the chain height.
|
||||
completer.complete(chainHeight);
|
||||
// Return the chain height.
|
||||
completer.complete(chainHeight);
|
||||
}
|
||||
} else {
|
||||
Logging.instance.log(
|
||||
"blockchain.headers.subscribe returned malformed response\n"
|
||||
"Response: $response",
|
||||
level: LogLevel.Error);
|
||||
}
|
||||
} else {
|
||||
Logging.instance.log(
|
||||
"blockchain.headers.subscribe returned malformed response\n"
|
||||
"Response: $response",
|
||||
level: LogLevel.Error);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Wait for first response.
|
||||
return completer.future;
|
||||
|
|
Loading…
Reference in a new issue