From 79f88b93b340593e401dbf1b69ecf0f9a333c6d9 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 3 Jul 2017 01:52:04 -0700 Subject: [PATCH] chaindb: v3. --- lib/blockchain/chaindb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/blockchain/chaindb.js b/lib/blockchain/chaindb.js index 6a525bd7..60019eb6 100644 --- a/lib/blockchain/chaindb.js +++ b/lib/blockchain/chaindb.js @@ -84,7 +84,7 @@ ChainDB.prototype.open = async function open() { this.logger.info('Opening ChainDB...'); await this.db.open(); - await this.db.checkVersion('V', 4); + await this.db.checkVersion('V', 3); state = await this.getState();