From f28b2bb6edad287ae418abc7b9ef5e147df84886 Mon Sep 17 00:00:00 2001 From: obscuren Date: Mon, 20 Apr 2015 18:12:05 +0200 Subject: [PATCH] core: upgraded block chain 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 3030af27de..4c70872ac1 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 = 1 + BlockChainVersion = 2 ) var statelogger = logger.NewLogger("BLOCK")