Add Palladium seed peers and enable peer discovery

This commit is contained in:
2026-02-13 08:49:31 +01:00
parent 9cb7922ac1
commit 2ed5c746a9
2 changed files with 12 additions and 2 deletions

View File

@@ -57,8 +57,10 @@ services:
SSL_KEYFILE: "/certs/server.key" SSL_KEYFILE: "/certs/server.key"
DB_DIRECTORY: "/data" DB_DIRECTORY: "/data"
PEER_DISCOVERY: "off" PEER_DISCOVERY: "on"
PEER_ANNOUNCE: "false" PEER_ANNOUNCE: "true"
# Set this to the server's public IP or hostname (required for peer discovery)
# REPORT_HOST: "your.public.ip.or.hostname"
INITIAL_CONCURRENT: "2" INITIAL_CONCURRENT: "2"
COST_SOFT_LIMIT: "0" COST_SOFT_LIMIT: "0"
COST_HARD_LIMIT: "0" COST_HARD_LIMIT: "0"

View File

@@ -30,6 +30,14 @@ class Palladium(Bitcoin):
RPC_PORT = 2332 RPC_PORT = 2332
PEER_DEFAULT_PORTS = {'t': '50001', 's': '50002'} PEER_DEFAULT_PORTS = {'t': '50001', 's': '50002'}
# === Seed peers for discovery ===
PEERS = [
'66.94.115.80 t',
'89.117.149.130 t',
'173.212.224.67 t',
'82.165.218.152 t',
]
# === Deserializer === # === Deserializer ===
DESERIALIZER = lib_tx.DeserializerSegWit DESERIALIZER = lib_tx.DeserializerSegWit