diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 0964bd4..8f1f1e9 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -47,7 +47,7 @@ jobs: # Complete integration tests are TODO - name: Run basic integration test env: - STATEDIFF_MODE: postgres + DATABASE_TYPE: postgres LEVELDB_PATH: ./fixtures/chaindata/_data/small LEVELDB_ANCIENT: ./fixtures/chaindata/_data/small/ancient LOG_FILE: ./server-log diff --git a/scripts/compare-statediffs.sh b/scripts/compare-statediffs.sh index 6478166..9442862 100755 --- a/scripts/compare-statediffs.sh +++ b/scripts/compare-statediffs.sh @@ -34,11 +34,11 @@ if [[ -z $output_dir ]]; then output_dir=$(mktemp -d) fi -export STATEDIFF_MODE=postgres export STATEDIFF_TRIE_WORKERS=32 export STATEDIFF_SERVICE_WORKERS=8 export STATEDIFF_WORKER_QUEUE_SIZE=1024 +export DATABASE_TYPE=postgres export DATABASE_NAME="cerc_testing" export DATABASE_HOSTNAME="localhost" export DATABASE_PORT=8077