From 375856bd13474037346f6b7fcb1103b631667f8f Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Wed, 6 Nov 2024 12:40:46 +0100 Subject: [PATCH] fix --- rsk/mainnet/node.conf | 6 +++--- rsk/testnet/node.conf | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/rsk/mainnet/node.conf b/rsk/mainnet/node.conf index 14ef367f..4db3c18c 100644 --- a/rsk/mainnet/node.conf +++ b/rsk/mainnet/node.conf @@ -10,14 +10,14 @@ providers : { cors: "*", http: { enabled: true, - bind_address = "0.0.0.0", - hosts = ["*"], + bind_address: "0.0.0.0", + hosts: "*", port: 4444, } ws: { enabled: true, bind_address: "0.0.0.0", - hosts = ["*"], + hosts: "*", port: 4445, } } diff --git a/rsk/testnet/node.conf b/rsk/testnet/node.conf index d85c51ea..6ba2643a 100644 --- a/rsk/testnet/node.conf +++ b/rsk/testnet/node.conf @@ -10,15 +10,15 @@ providers : { cors: "*", http: { enabled: true, - bind_address = "0.0.0.0", - hosts = ["*"], + bind_address: "0.0.0.0", + hosts: "*", port: 4444, } ws: { enabled: false, bind_address: "0.0.0.0", port: 4445, - hosts = ["*"] + host: "*" } } }