Skip to content

Commit aae436b

Browse files
committed
Merge remote-tracking branch 'origin/staging' into julian/testing
2 parents a8e74ff + 7aadaa5 commit aae436b

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

.github/workflows/build.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ on:
1919

2020
jobs:
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:

lib/wallets/crypto_currency/coins/fact0rn.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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),

lib/wallets/wallet/intermediate/lib_salvium_wallet.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)