From 9f32117457505f49001c324658f00833ab724667 Mon Sep 17 00:00:00 2001 From: obscuren Date: Tue, 28 Apr 2015 17:32:51 +0200 Subject: [PATCH] core: bump database version --- core/block_processor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/block_processor.go b/core/block_processor.go index af47069ada..9f26ab8b50 100644 --- a/core/block_processor.go +++ b/core/block_processor.go @@ -21,7 +21,7 @@ import ( const ( // must be bumped when consensus algorithm is changed, this forces the upgradedb // command to be run (forces the blocks to be imported again using the new algorithm) - BlockChainVersion = 2 + BlockChainVersion = 3 ) var statelogger = logger.NewLogger("BLOCK")