From 67c08fe6c9580dc928a6b554da43f0a7edf593a7 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Tue, 5 May 2026 19:28:27 +0000 Subject: [PATCH] Rootstock: revert HOCON env-var sub - hardcode rpc-de-31 domain ${?DOMAIN} substitution caused rskj to crash with 'Can't read config'. Hardcoding the host-specific domain for now (rootstock only runs on de-31). For multi-host deployment later, would need a per-host templated node.conf or a proxy that rewrites Host header. --- rootstock/bamboo/node.conf | 4 +--- rootstock/mainnet/node.conf | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/rootstock/bamboo/node.conf b/rootstock/bamboo/node.conf index bbc9ee7d..2ee33391 100644 --- a/rootstock/bamboo/node.conf +++ b/rootstock/bamboo/node.conf @@ -11,9 +11,7 @@ rpc { http = { enabled = true bind_address = "0.0.0.0" - # Whitelist: include localhost variants AND the public domain. - # ${?DOMAIN} is HOCON env-var sub: skipped if env var is unset. - hosts = ["localhost", "127.0.0.1", "::1", ${?DOMAIN}] + hosts = ["localhost", "127.0.0.1", "::1", "rpc-de-31.stakesquid.eu"] port = 8545 } ws = { diff --git a/rootstock/mainnet/node.conf b/rootstock/mainnet/node.conf index 70e61817..a3f46846 100644 --- a/rootstock/mainnet/node.conf +++ b/rootstock/mainnet/node.conf @@ -11,9 +11,7 @@ rpc { http = { enabled = true bind_address = "0.0.0.0" - # Whitelist: include localhost variants AND the public domain. - # ${?DOMAIN} is HOCON env-var sub: skipped if env var is unset. - hosts = ["localhost", "127.0.0.1", "::1", ${?DOMAIN}] + hosts = ["localhost", "127.0.0.1", "::1", "rpc-de-31.stakesquid.eu"] port = 8545 } ws = {