mirror of
https://github.com/status-im/op-geth.git
synced 2025-02-05 11:23:39 +00:00
eth: ensure from<to when tracing chain (credits Chen Nan via bugbounty)
This commit is contained in:
parent
6d1e292eef
commit
106d196ec4
@ -119,6 +119,9 @@ func (api *PrivateDebugAPI) TraceChain(ctx context.Context, start, end rpc.Block
|
||||
if to == nil {
|
||||
return nil, fmt.Errorf("end block #%d not found", end)
|
||||
}
|
||||
if from.Number().Cmp(to.Number()) >= 0 {
|
||||
return nil, fmt.Errorf("end block (#%d) needs to come after start block (#%d)", end, start)
|
||||
}
|
||||
return api.traceChain(ctx, from, to, config)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user