@@ -472,7 +472,7 @@ ApplicationWindow {
472
472
Text { text: ' <h3>Block details</h3>' ; color: " #F2F2F2" }
473
473
Text { text: ' <b>Block number:</b> ' + number; color: " #F2F2F2" }
474
474
Text { text: ' <b>Hash:</b> ' + hash; color: " #F2F2F2" }
475
- Text { text: ' <b>Coinbase:</b> ' + coinbase; color: " #F2F2F2" }
475
+ Text { text: ' <b>Coinbase:</b> < ' + name + ' > ' + coinbase; color: " #F2F2F2" }
476
476
Text { text: ' <b>Block found at:</b> ' + prettyTime; color: " #F2F2F2" }
477
477
Text { text: ' <b>Gas used:</b> ' + gasUsed + " / " + gasLimit; color: " #F2F2F2" }
478
478
}
@@ -699,9 +699,9 @@ ApplicationWindow {
699
699
}
700
700
701
701
if (initial){
702
- blockModel .append ({number: block .number , gasLimit: block .gasLimit , gasUsed: block .gasUsed , coinbase: block .coinbase , hash: block .hash , txs: txs, txAmount: amount, time: block .time , prettyTime: convertToPretty (block .time )})
702
+ blockModel .append ({number: block .number , name : block . name , gasLimit: block .gasLimit , gasUsed: block .gasUsed , coinbase: block .coinbase , hash: block .hash , txs: txs, txAmount: amount, time: block .time , prettyTime: convertToPretty (block .time )})
703
703
}else {
704
- blockModel .insert (0 , {number: block .number , gasLimit: block .gasLimit , gasUsed: block .gasUsed , coinbase: block .coinbase , hash: block .hash , txs: txs, txAmount: amount, time: block .time , prettyTime: convertToPretty (block .time )})
704
+ blockModel .insert (0 , {number: block .number , name : block . name , gasLimit: block .gasLimit , gasUsed: block .gasUsed , coinbase: block .coinbase , hash: block .hash , txs: txs, txAmount: amount, time: block .time , prettyTime: convertToPretty (block .time )})
705
705
}
706
706
}
707
707
0 commit comments