erigon-pulse/ethdb/object_db_nomdbx.go
Igor Mandrigin abf4fa5861
Don't require MDBX if you don't specify it (#1313)
* fix compilation

* add mdbx flag to the tg binary

* fix makefile

* fixups

* fix makefile

* fix readme

* fix linters

* fix tests
2020-10-28 12:17:18 +00:00

8 lines
108 B
Go

//+build !mdbx
package ethdb
func NewMDBX() LmdbOpts {
panic("to use MDBX, compile with -tags 'mdbx'")
}