From 3ce18c986060ee1356516e99194f7acc84ca5093 Mon Sep 17 00:00:00 2001 From: davide3011 Date: Fri, 13 Feb 2026 00:56:17 +0100 Subject: [PATCH] Fix PEER_DEFAULT_PORTS to match actual ElectrumX service ports --- electrumx-patch/coins_plm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrumx-patch/coins_plm.py b/electrumx-patch/coins_plm.py index 58a9b6d..00bf7e6 100644 --- a/electrumx-patch/coins_plm.py +++ b/electrumx-patch/coins_plm.py @@ -28,7 +28,7 @@ class Palladium(Bitcoin): # === Default ports === RPC_PORT = 2332 - PEER_DEFAULT_PORTS = {'t': '2333', 's': '52333'} + PEER_DEFAULT_PORTS = {'t': '50001', 's': '50002'} # === Deserializer === DESERIALIZER = lib_tx.DeserializerSegWit @@ -57,5 +57,5 @@ class PalladiumTestnet(Palladium): # === Testnet ports === RPC_PORT = 12332 - PEER_DEFAULT_PORTS = {'t': '12333', 's': '62333'} + PEER_DEFAULT_PORTS = {'t': '60001', 's': '60002'}