Skip to content

Commit

Permalink
LT runner fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbundalo committed Nov 4, 2024
1 parent 3ebf596 commit 526a57b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loadtest/runner/base_load_test_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ func (r *BaseLoadTestRunner) calculateResults(blockInfos map[uint64]*BlockInfo,

if _, ok := blockTimeMap[block]; !ok {
if currentBlockInfo, ok := blockInfos[block]; !ok {
currentBlock, err := r.client.GetBlockByNumber(jsonrpc.BlockNumber(parentBlockNum), true)
currentBlock, err := r.client.GetBlockByNumber(jsonrpc.BlockNumber(block), true)
if err != nil {
return err
}
Expand Down

0 comments on commit 526a57b

Please sign in to comment.