6cb54ca790
* Update queries to fetch data from cids tables * Fix eth_getTransactionByHash to return tx from canonical block * Fetch transaction by hash in a single query * Update queries to fetch data from IPLD blocks table * Avoid NULL result from canonical block hash query * Update GitHub workflow and script to run unit tests * Avoid usage of LIMIT 1 in queries for GQL API * Fetch IPLD data separately when retrieving latest account data or storage value * Upgrade geth dependency * Update GitHub workflow
17 lines
453 B
Bash
Executable File
17 lines
453 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Remove any existing containers / volumes
|
|
docker-compose down --remove-orphans --volumes
|
|
|
|
# Spin up DB and run migrations
|
|
docker-compose up -d migrations ipld-eth-db
|
|
sleep 30
|
|
|
|
# Run unit tests
|
|
go clean -testcache
|
|
PGPASSWORD=password DATABASE_USER=vdbm DATABASE_PORT=8077 DATABASE_PASSWORD=password DATABASE_HOSTNAME=127.0.0.1 DATABASE_NAME=vulcanize_testing make test
|
|
|
|
# Clean up
|
|
docker-compose down --remove-orphans --volumes
|
|
rm -rf out/
|