Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

chore: fixing typo and environment variables #61

Merged
merged 6 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ COMPOSE_FILE=network.yml:contracts.yml:subnet-topos.yml:subnet-incal.yml:executo
COMPOSE_PROJECT_NAME=infra

# Topos Subnet
export TOPOS_HOST_PORT=10002
TOPOS_HOST_PORT=10002
TOPOS_CHAIN_ID=2357

# Incal
export INCAL_HOST_PORT=20002
INCAL_HOST_PORT=20002
INCAL_CHAIN_ID=2358
INCAL_LOGO_URL=https://toposware.com/logo-incal.svg

Expand Down Expand Up @@ -34,4 +34,4 @@ TOPOS_VERSION=0.0.11
EXECUTOR_SERVICE_VERSION=1.2.0

# TESTS
export LOCAL_ERC20_HOME=./
LOCAL_ERC20_HOME=./
2 changes: 1 addition & 1 deletion .github/workflows/test:e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
repo: e2e-tests
github_token: ${{ secrets.ROBOT_PAT_TRIGGER_E2E_WORKFLOWS }}
workflow_file_name: frontend:erc20-messaging.yml
ref: main
ref: chore/debug-ci-1
Freyskeyd marked this conversation as resolved.
Show resolved Hide resolved
wait_interval: 60
client_payload: '{ "local-erc20-messaging-infra-ref": "${{ github.head_ref }}" }'
2 changes: 1 addition & 1 deletion tests/test_transaction_in_certificate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ source $LOCAL_ERC20_HOME/tests/utils.sh
function get_transaction_in_certificate()
{
echo $(docker compose logs incal-sequencer | grep "CrossSubnetMessageSentFilter" | \
awk -F 'transaction_hash: ' '{print $2}' | awk -F ',' '{print $1'} | tail -1)
awk -F 'transaction_hash: ' '{print $2}' | awk -F ',' '{print $1}' | tail -1)
}


Expand Down
Loading