forked from cerc-io/plugeth
Addad db name for new ldb
This commit is contained in:
parent
c7e73ba12d
commit
4f4175a3e2
@ -11,8 +11,8 @@ type LDBDatabase struct {
|
|||||||
db *leveldb.DB
|
db *leveldb.DB
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewLDBDatabase() (*LDBDatabase, error) {
|
func NewLDBDatabase(name string) (*LDBDatabase, error) {
|
||||||
dbPath := path.Join(ethutil.Config.ExecPath, "database")
|
dbPath := path.Join(ethutil.Config.ExecPath, name)
|
||||||
|
|
||||||
// Open the db
|
// Open the db
|
||||||
db, err := leveldb.OpenFile(dbPath, nil)
|
db, err := leveldb.OpenFile(dbPath, nil)
|
||||||
@ -40,6 +40,10 @@ func (db *LDBDatabase) Delete(key []byte) error {
|
|||||||
return db.db.Delete(key, nil)
|
return db.db.Delete(key, nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (db *LDBDatabase) Db() *leveldb.DB {
|
||||||
|
return db.db
|
||||||
|
}
|
||||||
|
|
||||||
func (db *LDBDatabase) LastKnownTD() []byte {
|
func (db *LDBDatabase) LastKnownTD() []byte {
|
||||||
data, _ := db.db.Get([]byte("LastKnownTotalDifficulty"), nil)
|
data, _ := db.db.Get([]byte("LastKnownTotalDifficulty"), nil)
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ type Ethereum struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func New(caps Caps, usePnp bool) (*Ethereum, error) {
|
func New(caps Caps, usePnp bool) (*Ethereum, error) {
|
||||||
db, err := ethdb.NewLDBDatabase()
|
db, err := ethdb.NewLDBDatabase("database")
|
||||||
//db, err := ethdb.NewMemDatabase()
|
//db, err := ethdb.NewMemDatabase()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
Loading…
Reference in New Issue
Block a user