Style changes

This commit is contained in:
shunmugam 2019-09-18 10:41:58 +05:30
parent 2072416288
commit fae953e04b
3 changed files with 4 additions and 3 deletions

View File

@ -130,7 +130,7 @@ try {
let result; //500
if(option == "circulating")
result= blockDetails.coin_existence * 100000000;
if(option == "reward")
else if(option == "reward")
result= blockDetails.currentReward * 100000000;
else if(option == "getblockcount")
result= blockDetails.block_height;
@ -320,7 +320,7 @@ console.log(__dirname);
console.log(`Node Express server listening on http://localhost:${PORT}`);
});
cron.schedule('* * * * * *', () => {
cron.schedule('*/30 * * * * *', () => {
universalGetLatestBlockDetails('Testnet');
});
var interval;

View File

@ -174,7 +174,7 @@
<div class="latest_table mt-3">
<h2 class="mb-3 chart_heading px-0 d-inline-block">Peers
<span *ngIf="peers && peers.length > 0" class="txn_count" >{{
<span *ngIf="peers && peers.length > 0" class="txn_count txn_peers" >{{
peers.length | number
}}</span>
</h2>

View File

@ -250,6 +250,7 @@ a:focus {
border: 1px solid #BF9B30;
transition: all 0.3s linear;
}
.txn_peers{margin-top: 2px;}
.blocks:hover .txn_count {
background: #f3f4f2;
color: #BF9B30;