2014-02-14 16:56:09 -06:00
|
|
|
package ethdb
|
|
|
|
|
|
|
|
import (
|
2015-04-07 15:19:01 -05:00
|
|
|
"os"
|
2015-05-12 07:24:11 -05:00
|
|
|
"path/filepath"
|
2015-04-07 15:19:01 -05:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2014-02-14 16:56:09 -06:00
|
|
|
)
|
2014-11-02 17:31:15 -06:00
|
|
|
|
2015-04-07 15:19:01 -05:00
|
|
|
func newDb() *LDBDatabase {
|
2015-05-12 07:24:11 -05:00
|
|
|
file := filepath.Join("/", "tmp", "ldbtesttmpfile")
|
2015-04-07 15:19:01 -05:00
|
|
|
if common.FileExist(file) {
|
|
|
|
os.RemoveAll(file)
|
2014-11-02 17:31:15 -06:00
|
|
|
}
|
|
|
|
|
2015-04-07 15:19:01 -05:00
|
|
|
db, _ := NewLDBDatabase(file)
|
2014-11-02 17:31:15 -06:00
|
|
|
|
2015-04-07 15:19:01 -05:00
|
|
|
return db
|
2014-11-02 17:31:15 -06:00
|
|
|
}
|