using paginated version of insight-api addrs/txs
This commit is contained in:
parent
9b27c30679
commit
18deef115a
5 changed files with 60 additions and 34 deletions
|
|
@ -10,8 +10,8 @@ FakeBlockchain.prototype.getTransaction = function(txid, cb) {
|
|||
return cb(null, {txid: txid});
|
||||
};
|
||||
|
||||
FakeBlockchain.prototype.getTransactions = function(addresses, cb) {
|
||||
cb(null, []);
|
||||
FakeBlockchain.prototype.getTransactions = function(addresses, from, to, cb) {
|
||||
cb(null, { totalItems: 0, items: [] });
|
||||
};
|
||||
|
||||
FakeBlockchain.prototype.subscribe = function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue