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.
 
 
 
arnaucube cbbcb65c8c Add lint checks: gofmt, goimports, golint 3 years ago
.github/workflows Add lint checks: gofmt, goimports, golint 3 years ago
batchbuilder Add Coordinator goroutines & channels processes 3 years ago
common Add lint checks: gofmt, goimports, golint 3 years ago
coordinator Add lint checks: gofmt, goimports, golint 3 years ago
db Add lint checks: gofmt, goimports, golint 3 years ago
eth Add lint checks: gofmt, goimports, golint 3 years ago
log Add lint checks: gofmt, goimports, golint 3 years ago
node Add initial structure Coordinator Forge Sequence 3 years ago
priceupdater Add linter checks to GHA & Fix code to pass lints 3 years ago
test Add lint checks: gofmt, goimports, golint 3 years ago
txselector Add linter checks to GHA & Fix code to pass lints 3 years ago
utils Add lint checks: gofmt, goimports, golint 3 years ago
README.md Add linter checks to GHA & Fix code to pass lints 3 years ago
go.mod Add statedb ExitTree implementation 3 years ago
go.sum Impl historyDB methods for sync main loop 3 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 ./...

Lint

golangci-lint run --timeout=5m -E whitespace -E gosec -E gci -E misspell -E gomnd --max-same-issues 0