mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 11:41:19 +00:00
abf4fa5861
* fix compilation * add mdbx flag to the tg binary * fix makefile * fixups * fix makefile * fix readme * fix linters * fix tests
8 lines
108 B
Go
8 lines
108 B
Go
//+build !mdbx
|
|
|
|
package ethdb
|
|
|
|
func NewMDBX() LmdbOpts {
|
|
panic("to use MDBX, compile with -tags 'mdbx'")
|
|
}
|