mempool: update serialization version.

This commit is contained in:
Christopher Jeffrey 2017-03-05 17:14:03 -08:00
parent b53162e12d
commit 545eb77cdb
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -2375,7 +2375,7 @@ function MempoolCache(options) {
this.db = LDB(options);
}
MempoolCache.VERSION = 1;
MempoolCache.VERSION = 2;
MempoolCache.prototype.getVersion = co(function* getVersion() {
var data = yield this.db.get(layout.V);