mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 12:07:17 +00:00
20 lines
273 B
Go
20 lines
273 B
Go
package ethdb
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
)
|
|
|
|
func newDb() *LDBDatabase {
|
|
file := filepath.Join("/", "tmp", "ldbtesttmpfile")
|
|
if common.FileExist(file) {
|
|
os.RemoveAll(file)
|
|
}
|
|
|
|
db, _ := NewLDBDatabase(file)
|
|
|
|
return db
|
|
}
|