Merge pull request #25 from dabura667/findunconf

Fetch unconfirmed utxos as well
This commit is contained in:
OutCast3k 2015-08-31 11:45:21 +01:00
commit e33b2dc58e

View file

@ -617,7 +617,7 @@ $(document).ready(function() {
function listUnspentBlockrio_BitcoinMainnet(redeem){
$.ajax ({
type: "POST",
url: "https://btc.blockr.io/api/v1/address/unspent/"+redeem.addr,
url: "https://btc.blockr.io/api/v1/address/unspent/"+redeem.addr+"?unconfirmed=1",
dataType: "json",
error: function(data) {
$("#redeemFromStatus").removeClass('hidden').html('<span class="glyphicon glyphicon-exclamation-sign"></span> Unexpected error, unable to retrieve unspent outputs!');