diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-25 18:21:03 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-25 18:21:03 +0800 |
commit | 4f4175a3e295272025d312c800f65fc1a143a9ca (patch) | |
tree | df4f7b5f5bbab312afd89e3809d3b1457632cf11 /ethereum.go | |
parent | c7e73ba12d747186002433db54d002ab43bed171 (diff) | |
download | go-tangerine-4f4175a3e295272025d312c800f65fc1a143a9ca.tar.gz go-tangerine-4f4175a3e295272025d312c800f65fc1a143a9ca.tar.zst go-tangerine-4f4175a3e295272025d312c800f65fc1a143a9ca.zip |
Addad db name for new ldb
Diffstat (limited to 'ethereum.go')
-rw-r--r-- | ethereum.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereum.go b/ethereum.go index 725fe5a3d..90682b396 100644 --- a/ethereum.go +++ b/ethereum.go @@ -61,7 +61,7 @@ type Ethereum struct { } func New(caps Caps, usePnp bool) (*Ethereum, error) { - db, err := ethdb.NewLDBDatabase() + db, err := ethdb.NewLDBDatabase("database") //db, err := ethdb.NewMemDatabase() if err != nil { return nil, err |