From 2587a6192a8d07d51d31a9fc29e66ab5bfbc9c49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Chabowski?= Date: Tue, 2 Jul 2024 16:39:36 +0200 Subject: [PATCH] Do not add `[storage]` section to sidecar config --- sh/assets/setup_shared.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/sh/assets/setup_shared.sh b/sh/assets/setup_shared.sh index 1561a58..3baa998 100644 --- a/sh/assets/setup_shared.sh +++ b/sh/assets/setup_shared.sh @@ -459,7 +459,6 @@ function setup_asset_node_configs() "toml.dump(cfg, open('$PATH_TO_CONFIG_FILE', 'w'));" ) - #TODO[RC]: Remove the line that adds the 'storage' key once the sidecar is updated to not require it for RPC only instances. if [ -f "$PATH_TO_SIDECAR_TEMPLATE" ]; then # Prepare the sidecar config file. cp "$PATH_TO_SIDECAR_TEMPLATE" "$PATH_TO_SIDECAR_CONFIG_FILE" @@ -469,7 +468,6 @@ function setup_asset_node_configs() "cfg['rpc_server']['main_server']['address']='0.0.0.0:$(get_node_port_rpc "$IDX")';" "cfg['rpc_server']['speculative_exec_server']['address']='0.0.0.0:$(get_node_port_speculative_exec "$IDX")';" "cfg['rpc_server']['node_client']['address']='0.0.0.0:$(get_node_port_binary "$IDX")';" - "cfg['storage']={'storage_folder': '.'};" "toml.dump(cfg, open('$PATH_TO_SIDECAR_CONFIG_FILE', 'w'));" ) fi