diff options
author | Felix Lange <fjl@twurst.com> | 2016-09-06 06:31:30 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-09-16 21:24:31 +0800 |
commit | 52ede09b172094f8fd85f8b10e7d0578059353fb (patch) | |
tree | eec31f4499b86d3b9dd6267cf724bac948edb1c0 /ethdb | |
parent | f5c432bcab70ddc818db90ae410e07e6253585af (diff) | |
download | go-tangerine-52ede09b172094f8fd85f8b10e7d0578059353fb.tar.gz go-tangerine-52ede09b172094f8fd85f8b10e7d0578059353fb.tar.zst go-tangerine-52ede09b172094f8fd85f8b10e7d0578059353fb.zip |
ethdb: add accessor for database directory
Diffstat (limited to 'ethdb')
-rw-r--r-- | ethdb/database.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ethdb/database.go b/ethdb/database.go index f93731cfe..2e951927c 100644 --- a/ethdb/database.go +++ b/ethdb/database.go @@ -98,6 +98,11 @@ func NewLDBDatabase(file string, cache int, handles int) (*LDBDatabase, error) { }, nil } +// Path returns the path to the database directory. +func (db *LDBDatabase) Path() string { + return db.fn +} + // Put puts the given key / value to the queue func (self *LDBDatabase) Put(key []byte, value []byte) error { // Measure the database put latency, if requested |