Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- fixed: Change PIVX blockbook server list.

## 3.8.8 (2025-11-06)

- fixed: Fix failed transaction processing for FIRO transactions with SparkSpend inputs.
Expand Down
2 changes: 1 addition & 1 deletion src/common/utxobased/info/pivx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const currencyInfo: EdgeCurrencyInfo = {
...legacyMemoInfo,
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: ['wss://pivx-wusa1.edge.app', 'wss://zkbitcoin.com'],
blockbookServers: ['wss://pivx-eusa1.edge.app', 'wss://zkbitcoin.com'],
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Configuration Mismatch Causes Instability

The blockbookServers array was updated to use pivx-eusa1.edge.app, but engineInfo.serverConfigs on line 48 still references pivx-wusa1.edge.app. This creates an inconsistency where the deprecated default settings and the engine configuration point to different servers, potentially causing connection issues or unexpected fallback behavior.

Fix in Cursor Fix in Web

enableCustomServers: false
},
displayName: 'PIVX',
Expand Down
Loading