From b26ad53cedfe4da73989555aac5dde3b91af6d3d Mon Sep 17 00:00:00 2001 From: VoR0220 Date: Tue, 1 Nov 2016 13:16:41 -0500 Subject: [PATCH] accounts/abi: forgot to leave this bit out Signed-off-by: VoR0220 --- node/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/node.go b/node/node.go index 92f375ada9..41c9eb27f7 100644 --- a/node/node.go +++ b/node/node.go @@ -248,7 +248,7 @@ func (n *Node) openDataDir() error { // Try to open the instance directory as LevelDB storage. This creates a lock file // which prevents concurrent use by another instance as well as accidental use of the // instance directory as a database. - storage, err := storage.OpenFile(instdir) + storage, err := storage.OpenFile(instdir, true) if err != nil { return err }