diff options
author | Felix Lange <fjl@twurst.com> | 2016-09-29 20:24:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-29 20:24:37 +0800 |
commit | 44bc2e80ddf82ea2a37c25e7beb0ca06b46b7308 (patch) | |
tree | aaab07e78f7b9341f0fcfbd9348fe96273bd6a0d /ethdb/database.go | |
parent | 4e8cec05abb567457e80185cb9fcf7ec2cc90596 (diff) | |
parent | b42a5b118f1aa7ac1235547c8594146978941401 (diff) | |
download | go-tangerine-44bc2e80ddf82ea2a37c25e7beb0ca06b46b7308.tar go-tangerine-44bc2e80ddf82ea2a37c25e7beb0ca06b46b7308.tar.gz go-tangerine-44bc2e80ddf82ea2a37c25e7beb0ca06b46b7308.tar.bz2 go-tangerine-44bc2e80ddf82ea2a37c25e7beb0ca06b46b7308.tar.lz go-tangerine-44bc2e80ddf82ea2a37c25e7beb0ca06b46b7308.tar.xz go-tangerine-44bc2e80ddf82ea2a37c25e7beb0ca06b46b7308.tar.zst go-tangerine-44bc2e80ddf82ea2a37c25e7beb0ca06b46b7308.zip |
Merge pull request #2914 from fjl/node-coinhabit
cmd/utils, node: make datadir reusable for bzzd
Diffstat (limited to 'ethdb/database.go')
-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 a4a27303a..479c54b60 100644 --- a/ethdb/database.go +++ b/ethdb/database.go @@ -100,6 +100,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 |