Fix PEER_DEFAULT_PORTS to match actual ElectrumX service ports

This commit is contained in:
2026-02-13 00:56:17 +01:00
parent 5cc3dcacc8
commit 3ce18c9860

View File

@@ -28,7 +28,7 @@ class Palladium(Bitcoin):
# === Default ports === # === Default ports ===
RPC_PORT = 2332 RPC_PORT = 2332
PEER_DEFAULT_PORTS = {'t': '2333', 's': '52333'} PEER_DEFAULT_PORTS = {'t': '50001', 's': '50002'}
# === Deserializer === # === Deserializer ===
DESERIALIZER = lib_tx.DeserializerSegWit DESERIALIZER = lib_tx.DeserializerSegWit
@@ -57,5 +57,5 @@ class PalladiumTestnet(Palladium):
# === Testnet ports === # === Testnet ports ===
RPC_PORT = 12332 RPC_PORT = 12332
PEER_DEFAULT_PORTS = {'t': '12333', 's': '62333'} PEER_DEFAULT_PORTS = {'t': '60001', 's': '60002'}