add getPublicUrlForTx to blockchain explorer

This commit is contained in:
Ivan Socolsky 2015-07-03 13:59:45 -03:00
parent d3ebf1b2e8
commit 470df32a09
2 changed files with 5 additions and 0 deletions

View File

@ -108,4 +108,8 @@ Insight.prototype.initSocket = function() {
return socket;
};
Insight.prototype.getPublicUrlForTx = function(txid) {
return this.url + '/tx/' + txid;
};
module.exports = Insight;

View File

@ -20,6 +20,7 @@ describe('Blockchain explorer', function() {
exp.should.respondTo('getAddressActivity');
exp.should.respondTo('getUnspentUtxos');
exp.should.respondTo('initSocket');
exp.should.respondTo('getPublicUrlForTx');
var exp = new BlockchainExplorer({
provider: 'insight',
network: 'livenet',