From 4aaece66a577faf869bdf0f427e154b903719089 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Wed, 21 May 2014 15:53:49 -0300 Subject: [PATCH] rm tdb dependency from Block DB2 --- lib/BlockDb.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/BlockDb.js b/lib/BlockDb.js index 86268cff..483b7252 100644 --- a/lib/BlockDb.js +++ b/lib/BlockDb.js @@ -18,8 +18,6 @@ var levelup = require('levelup'), var db = imports.db || levelup(config.leveldb + '/blocks',{maxOpenFiles: MAX_OPEN_FILES} ); var Rpc = imports.rpc || require('./Rpc'); -var tDb = require('./TransactionDb.js').default(); - var BlockDb = function() { BlockDb.super(this, arguments); };