aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-28 23:32:51 +0800
committerobscuren <geffobscura@gmail.com>2015-04-29 18:51:04 +0800
commit9f32117457505f49001c324658f00833ab724667 (patch)
treee048a0c70a3865e6927f6052c0ad12123bc60229
parenta4b79f1dac2143b5fb9eb5745077ea245050a7ed (diff)
downloaddexon-9f32117457505f49001c324658f00833ab724667.tar
dexon-9f32117457505f49001c324658f00833ab724667.tar.gz
dexon-9f32117457505f49001c324658f00833ab724667.tar.bz2
dexon-9f32117457505f49001c324658f00833ab724667.tar.lz
dexon-9f32117457505f49001c324658f00833ab724667.tar.xz
dexon-9f32117457505f49001c324658f00833ab724667.tar.zst
dexon-9f32117457505f49001c324658f00833ab724667.zip
core: bump database version
-rw-r--r--core/block_processor.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/block_processor.go b/core/block_processor.go
index af47069ad..9f26ab8b5 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")