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
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 5 additions and 0 deletions

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