2020-09-26 19:17:31 +00:00
|
|
|
import 'package:mobx/mobx.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/node.dart';
|
2020-09-26 19:17:31 +00:00
|
|
|
import 'package:cake_wallet/store/app_store.dart';
|
|
|
|
|
|
|
|
ReactionDisposer _onCurrentNodeChangeReaction;
|
|
|
|
|
|
|
|
void startOnCurrentNodeChangeReaction(AppStore appStore) {
|
|
|
|
_onCurrentNodeChangeReaction?.reaction?.dispose();
|
2020-12-15 16:29:10 +00:00
|
|
|
appStore.settingsStore.nodes.observe((change) async {
|
2020-09-26 19:17:31 +00:00
|
|
|
try {
|
2020-12-15 16:29:10 +00:00
|
|
|
await appStore.wallet.connectToNode(node: change.newValue);
|
2020-09-26 19:17:31 +00:00
|
|
|
} catch (e) {
|
|
|
|
print(e.toString());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|