You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Eduard S 58cf35f6ea
Merge pull request #52 from hermeznetwork/feature/init-coordinator
4 years ago
.github/workflows Remove goarch 386 and go-version 1.13 from GHA 4 years ago
batchbuilder Add initial structure Coordinator Forge Sequence 4 years ago
common Add initial structure Coordinator Forge Sequence 4 years ago
coordinator Add initial structure Coordinator Forge Sequence 4 years ago
db Add BatchQueue implementation & minor updates 4 years ago
eth Add initial structure Coordinator Forge Sequence 4 years ago
node Add initial structure Coordinator Forge Sequence 4 years ago
priceupdater Priceupdater-v0 (#23) 4 years ago
txselector Add BatchQueue implementation & minor updates 4 years ago
README.md Integrate TxSelector with StateDB 4 years ago
go.mod create sql tables (#40) 4 years ago
go.sum create sql tables (#40) 4 years ago

README.md

hermez-node Go Report Card Test Status Lint Status GoDoc

Go implementation of the Hermez node.

Test

  • First run a docker instance of the PostgresSQL (where yourpasswordhere should be your password)
POSTGRES_PASS=yourpasswordhere; sudo docker run --rm --name hermez-db-test -p 5432:5432 -e POSTGRES_DB=history -e POSTGRES_USER=hermez -e POSTGRES_PASSWORD="$POSTGRES_PASS" -d postgres && sleep 2s && sudo docker exec hermez-db-test psql -a history -U hermez -c "CREATE DATABASE l2;"
  • Then, run the tests with the password as env var
POSTGRES_PASS=yourpasswordhere go test ./...