From cf05d1eeb2243eb639c695bd15c9f1a7427206ad Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Mon, 9 Sep 2024 15:16:44 +0200 Subject: [PATCH] fix --- berachain/artio/config/app.toml | 2 +- berachain/artio/config/config.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/berachain/artio/config/app.toml b/berachain/artio/config/app.toml index de55cfa4..82ad9131 100644 --- a/berachain/artio/config/app.toml +++ b/berachain/artio/config/app.toml @@ -211,7 +211,7 @@ max-txs = -1 [beacon-kit.engine] # HTTP url of the execution client JSON-RPC endpoint. -rpc-dial-url = "http://berachain-bartio:8551" +rpc-dial-url = "http://localhost:8551" # Number of retries before shutting down consensus client. rpc-retries = "3" diff --git a/berachain/artio/config/config.toml b/berachain/artio/config/config.toml index 12ca8a00..fca73c4b 100644 --- a/berachain/artio/config/config.toml +++ b/berachain/artio/config/config.toml @@ -100,7 +100,7 @@ laddr = "tcp://0.0.0.0:26657" # A list of origins a cross-domain request can be executed from # Default value '[]' disables cors support # Use '["*"]' to allow any origin -cors_allowed_origins = [*] +cors_allowed_origins = ["*"] # A list of methods the client is allowed to use with cross-domain requests cors_allowed_methods = ["HEAD", "GET", "POST", ]