quorum/ethdb/database_test.go

20 lines
260 B
Go
Raw Normal View History

2014-02-14 14:56:09 -08:00
package ethdb
import (
"os"
"path"
"github.com/ethereum/go-ethereum/common"
2014-02-14 14:56:09 -08:00
)
2014-11-02 15:31:15 -08:00
func newDb() *LDBDatabase {
file := path.Join("/", "tmp", "ldbtesttmpfile")
if common.FileExist(file) {
os.RemoveAll(file)
2014-11-02 15:31:15 -08:00
}
db, _ := NewLDBDatabase(file)
2014-11-02 15:31:15 -08:00
return db
2014-11-02 15:31:15 -08:00
}