diff --git a/currency/index.html b/currency/index.html index 58c48c3..410db20 100644 --- a/currency/index.html +++ b/currency/index.html @@ -141,7 +141,6 @@ description: pages.currency.description }); }); - // Get the current number of masternodes. $.ajax({ url: "{{ site.api }}/masternodes/stats/" @@ -155,7 +154,6 @@ description: pages.currency.description $("#masternodes_max").text(masternodes_max); }); - // Get the budget proposals $.ajax({ url: "{{ site.api }}/budgets/" @@ -173,14 +171,11 @@ description: pages.currency.description amount_monthly = formatCurrency(proposal.monthly_amount) will_be_funded = proposal.will_be_funded ? "yes" : "no"; - - - $("#budgets>tbody").append('' + title + '' + owner + '' + votes_yes + '/' + votes_no + '' + required_votes + '' + amount_monthly + '' + will_be_funded + ''); + $("#budgets>tbody").append('' + title + '' + owner + '' + votes_yes + '/' + votes_no + '' + required_votes + '' + amount_monthly + '' + will_be_funded + ''); }); }); - // Get the blockchain info $.ajax({ url: "{{ site.api }}/chain/latestBlocks/"