Need to refrence the right DB.

master
Alexander Blair 7 years ago
parent d058c0c7fd
commit d618eecd3b

@ -340,7 +340,7 @@ function Database(){
this.refreshEnv();
debug("Getting the data for blockID: " + blockID);
let txn = this.env.beginTxn({readOnly: true});
let data = txn.getBinary(blockID);
let data = txn.getBinary(this.blockDB, blockID);
if (data === null){
debug("Unable to get block at height: "+ blockID);
return false;

Loading…
Cancel
Save