Skip to content

v2.1.2

Compare
Choose a tag to compare
@darrenvechain darrenvechain released this 05 Jun 09:55
· 53 commits to master since this release
43d1fde

Notice

⚠️ An error occurs when building from source using the makefile in this version. To fix it, update line 4 in the Makefile from:

GIT_TAG = $(shell git tag -l --points-at HEAD)

To:

GIT_TAG = $(shell git tag -l --points-at HEAD | head -n 1)

What's Changed

  • Added Prometheus for node monitoring. Use the --enable-metrics flag
  • Specify --allowed-peers when running a node to connect to a custom array of peers
  • Specify --api-logs-enabled to print API logs to the console
  • Added support for a finalized revision in the accounts and debug endpoints
  • Added various unit and E2E tests
  • Bug fixes and improvements
  • Update the base base price in solo
  • Set the default solo gas limit to 40M
  • Specify a custom genesis file when starting solo with --genesis
  • Specify a custom block interval when starting solo with --block-interval
  • CI/CD workflow improvements

Contributors

New Contributors

Full Changelog: v2.1.1...v2.1.2