Skip to content

Commit

Permalink
Donation info on modern dashboard
Browse files Browse the repository at this point in the history
Re/enable danation info on modern dashboard
  • Loading branch information
Lovok committed Apr 4, 2014
1 parent c7cd90e commit 9b107e7
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions web-static.modern/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ <h4>Status</h4>
<td width='25%' class='text-right'><span id='expected_time_to_block'></span></td>
</tr>
<tr>
<td width='25%'>Node fee:</td>
<td width='25%' class='text-right'><span id='node_fee'></span></td>
<td width='25%'>Node fee / donation:</td>
<td width='25%' class='text-right'><span id='node_fee'></span> / <span id='node_donation'></span></td>
<td width='25%'>Node uptime:</td>
<td width='25%' class='text-right'><span id='node_uptime'></span></td>
</tr>
Expand All @@ -139,10 +139,6 @@ <h4>Status</h4>
<td width='25%'>Protocol version:</td>
<td width='25%' class='text-right'><span id='protocol_version'></span></td>
</tr>
<!--<tr>
<td width='25%'>Node donation:</td>
<td width='25%' class='text-right'><span id='node_donation'></span></td>
</tr>-->
</table>

<h4>Active miners on this node</h4>
Expand Down Expand Up @@ -343,8 +339,8 @@ <h4>Recent blocks</h4>
.text(parseFloat(local_stats.block_value).toFixed(8))
.append(' ').append(currency.clone());

//$('#node_donation')
// .text(local_stats.donation_proportion + '%');
$('#node_donation')
.text((local_stats.donation_proportion * 100) + '%');

$('#node_fee')
.text(local_stats.fee + '%');
Expand Down

0 comments on commit 9b107e7

Please sign in to comment.