check if block was created after timeStart

This commit is contained in:
Anton Kaliaev
2018-05-08 16:23:00 +04:00
parent ab9881471a
commit 52d3eca67c

View File

@@ -135,6 +135,11 @@ func calculateStatistics(client tmrpc.Client, minHeight int64, timeStart, timeSt
numBlocksPerSec := make(map[int64]int64)
numTxsPerSec := make(map[int64]int64)
for _, blockMeta := range info.BlockMetas {
// check if block was created after timeStart
if blockMeta.Header.Time.Before(timeStart) {
continue
}
// check if block was created before timeStop
if blockMeta.Header.Time.After(timeStop) {
break