Update my Electrum server details in servers.json
What changed, and why it matters
This commit simply updates contact details for one public Electrum server in the app's built-in server list. The server operator changed their domain name from electrum.jochen-hoenicke.de to electrum.jhoenicke.de and switched back to the standard Electrum ports (50001/50002) because they said a non-standard port was being abused by malware. There is no code change and no direct security fix in Electrum itself.
No action required. Treat as routine hardcoded server-list maintenance. Users relying on the old hostname or ports should note the operator's new details.
Security signals we found
Operator reports a non-standard port was 'apparently used by malware' (operator claim, not a vulnerability in Electrum)
Return to default Electrum ports (50001/50002) reduces likelihood of port confusion with unrelated services
Evidence from the diff
A single entry in electrum/chains/mainnet/servers.json is modified. The pruning setting remains ‘-‘. TLS port changes from 50006 to 50002, TCP port from 50099 to 50001, protocol version from 1.4.5 to 1.6, and the hostname is shortened. This is a configuration/metadata update to a community server listing, not a patch to Electrum client or server logic.
Changed components
electrum/chains/mainnet/servers.jsonInspect captured patch +4 / −4
diff --git a/electrum/chains/mainnet/servers.json b/electrum/chains/mainnet/servers.json
index e37571a..3295de2 100644
--- a/electrum/chains/mainnet/servers.json
+++ b/electrum/chains/mainnet/servers.json
@@ -249,11 +249,11 @@
"t": "50001",
"version": "1.4"
},
- "electrum.jochen-hoenicke.de": {
+ "electrum.jhoenicke.de": {
"pruning": "-",
- "s": "50006",
- "t": "50099",
- "version": "1.4.5"
+ "s": "50002",
+ "t": "50001",
+ "version": "1.6"
},
"electrum.pabu.io": {
"pruning": "-",
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.