diff --git a/lib/bcoin/txdb.js b/lib/bcoin/txdb.js index 798c3b47..98d7382d 100644 --- a/lib/bcoin/txdb.js +++ b/lib/bcoin/txdb.js @@ -1333,7 +1333,7 @@ TXDB.prototype.getHistoryHashes = function getHistoryHashes(account, callback) { return key[1]; } key = layout.tt(key); - return key[0]; + return key; } }, callback); }; @@ -1363,7 +1363,7 @@ TXDB.prototype.getUnconfirmedHashes = function getUnconfirmedHashes(account, cal return key[1]; } key = layout.pp(key); - return key[0]; + return key; } }, callback); };