From 9248360157e647714dc0c38ee9c190c837f82517 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Dan?= Date: Fri, 16 Jun 2023 19:07:05 -0400 Subject: [PATCH] fix: use topos core proxy address for sequencers (#15) --- .env | 4 ++-- subnet-edena.yml | 2 +- subnet-incal.yml | 2 +- subnet-topos.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.env b/.env index 5097984..528a79e 100644 --- a/.env +++ b/.env @@ -23,6 +23,6 @@ REDIS_PORT=6379 # Stack version TOPOS_EDGE_VERSION=develop -TOPOS_MESSAGING_PROTOCOL_CONTRACTS_VERSION=pr-88 +TOPOS_MESSAGING_PROTOCOL_CONTRACTS_VERSION=1.1.2 TOPOS_VERSION=main-tce -EXECUTOR_SERVICE_VERSION=0.1.0-alpha +EXECUTOR_SERVICE_VERSION=0.1.0 diff --git a/subnet-edena.yml b/subnet-edena.yml index 2e69cb9..b569fe9 100644 --- a/subnet-edena.yml +++ b/subnet-edena.yml @@ -145,7 +145,7 @@ services: entrypoint: "" command: bash -c " source /contracts/.env && - export SUBNET_CONTRACT_ADDRESS=$(printenv TOPOS_CORE_CONTRACT_ADDRESS) && + export SUBNET_CONTRACT_ADDRESS=$(printenv TOPOS_CORE_PROXY_CONTRACT_ADDRESS) && init.sh boot sequencer run" environment: - RUST_LOG=info,topos=debug diff --git a/subnet-incal.yml b/subnet-incal.yml index 489cb3c..6b9f843 100644 --- a/subnet-incal.yml +++ b/subnet-incal.yml @@ -145,7 +145,7 @@ services: entrypoint: "" command: bash -c " source /contracts/.env && - export SUBNET_CONTRACT_ADDRESS=$(printenv TOPOS_CORE_CONTRACT_ADDRESS) && + export SUBNET_CONTRACT_ADDRESS=$(printenv TOPOS_CORE_PROXY_CONTRACT_ADDRESS) && init.sh boot sequencer run" environment: - RUST_LOG=info,topos=debug diff --git a/subnet-topos.yml b/subnet-topos.yml index b9047e5..681adad 100644 --- a/subnet-topos.yml +++ b/subnet-topos.yml @@ -143,7 +143,7 @@ services: entrypoint: "" command: bash -c " source /contracts/.env && - export SUBNET_CONTRACT_ADDRESS=$(printenv TOPOS_CORE_CONTRACT_ADDRESS) && + export SUBNET_CONTRACT_ADDRESS=$(printenv TOPOS_CORE_PROXY_CONTRACT_ADDRESS) && init.sh boot sequencer run" environment: - RUST_LOG=info,topos=debug