File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919
2020jobs :
2121
22+ build-disclaimer :
23+ runs-on : ubuntu-24.04
24+ steps :
25+ - name : Post tester disclaimer
26+ run : |
27+ cat >> $GITHUB_STEP_SUMMARY << 'EOF'
28+ > [!CAUTION]
29+ > **These are unverified, unsupported development builds — not official releases.**
30+ > They have not undergone QA testing and may contain bugs or incomplete features.
31+ > Download and use entirely at your own risk. Do not use with real funds.
32+ > Official releases are published on the [Releases page](https://github.com/cypherstack/stack_wallet/releases).
33+ EOF
34+
2235 build-linux :
2336 runs-on : ubuntu-24.04
2437 permissions :
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ class Fact0rn extends Bip39HDCurrency with ElectrumXCurrencyInterface {
175175 switch (network) {
176176 case CryptoCurrencyNetwork .main:
177177 return NodeModel (
178- host: "electrumx1 .projectfactor.io" ,
178+ host: "electrumx2 .projectfactor.io" ,
179179 port: 50002 ,
180180 name: DefaultNodes .defaultName,
181181 id: DefaultNodes .buildId (this ),
Original file line number Diff line number Diff line change @@ -532,9 +532,9 @@ abstract class LibSalviumWallet<T extends CryptonoteCurrency>
532532 csSalvium.startListeners (wallet! );
533533 csSalvium.startAutoSaving (wallet! );
534534
535- // _setSyncStatus(ConnectedSyncStatus());
535+ _setSyncStatus (ConnectedSyncStatus ());
536536 } catch (e, s) {
537- // _setSyncStatus(FailedSyncStatus());
537+ _setSyncStatus (FailedSyncStatus ());
538538 Logging .instance.e (
539539 "Exception caught in $runtimeType .updateNode(): " ,
540540 error: e,
You can’t perform that action at this time.
0 commit comments