diff options
Diffstat (limited to 'node/service.go')
-rw-r--r-- | node/service.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/service.go b/node/service.go index 55062a500..afc43e848 100644 --- a/node/service.go +++ b/node/service.go @@ -41,7 +41,7 @@ type ServiceContext struct { // node is an ephemeral one, a memory database is returned. func (ctx *ServiceContext) OpenDatabase(name string, cache int, handles int) (ethdb.Database, error) { if ctx.config.DataDir == "" { - return ethdb.NewMemDatabase() + return ethdb.NewMemDatabase(), nil } db, err := ethdb.NewLDBDatabase(ctx.config.resolvePath(name), cache, handles) if err != nil { |