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.
 
 
 
a_bennassar 6c0c528b17
Merge pull request #61 from hermeznetwork/feature/log
4 years ago
.github/workflows Remove goarch 386 and go-version 1.13 from GHA 4 years ago
batchbuilder Update Coordinator & BatchBuilder & TxSelector to new SQL schemas changes 4 years ago
common Update Coordinator & BatchBuilder & TxSelector to new SQL schemas changes 4 years ago
coordinator Update Coordinator & BatchBuilder & TxSelector to new SQL schemas changes 4 years ago
db Update Coordinator & BatchBuilder & TxSelector to new SQL schemas changes 4 years ago
eth Add initial structure Coordinator Forge Sequence 4 years ago
log Add log system 4 years ago
node Add initial structure Coordinator Forge Sequence 4 years ago
priceupdater Priceupdater-v0 (#23) 4 years ago
txselector Update Coordinator & BatchBuilder & TxSelector to new SQL schemas changes 4 years ago
utils Add utils Float16-BigInt converters 4 years ago
README.md Integrate TxSelector with StateDB 4 years ago
go.mod Add log system 4 years ago
go.sum Add log system 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 ./...