diff --git a/lotuspond/front/src/ChainExplorer.js b/lotuspond/front/src/ChainExplorer.js
index 5aa6dbf06..d395bd331 100644
--- a/lotuspond/front/src/ChainExplorer.js
+++ b/lotuspond/front/src/ChainExplorer.js
@@ -123,9 +123,13 @@ class ChainExplorer extends React.Component {
if(msgc > 0) {
msgc = {msgc}
}
+ let time = '?'
+ if(this.state.cache[row - 1]){
+ time = {ts.Blocks[0].Timestamp - this.state.cache[row - 1].Blocks[0].Timestamp}s
+ }
info =
- Msgs: {msgc}
+ Msgs: {msgc} ΔT:{time}
}