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';
|
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
ReactionDisposer? _onCurrentNodeChangeReaction;
|
2020-09-26 19:17:31 +00:00
|
|
|
|
|
|
|
void startOnCurrentNodeChangeReaction(AppStore appStore) {
|
2022-10-12 17:09:57 +00:00
|
|
|
_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 {
|
2022-10-12 17:09:57 +00:00
|
|
|
await appStore.wallet!.connectToNode(node: change.newValue!);
|
2020-09-26 19:17:31 +00:00
|
|
|
} catch (e) {
|
|
|
|
print(e.toString());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|