mirror of
https://github.com/tendermint/tendermint.git
synced 2026-05-30 10:56:20 +00:00
check if block was created after timeStart
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user