This commit is contained in:
committed by
Péter Szilágyi
parent
cdadf57bf9
commit
f578d41ee6
@ -802,6 +802,10 @@ func DoCall(ctx context.Context, b Backend, args CallArgs, blockNr rpc.BlockNumb
|
||||
if err := vmError(); err != nil {
|
||||
return nil, 0, false, err
|
||||
}
|
||||
// If the timer caused an abort, return an appropriate error message
|
||||
if evm.Cancelled() {
|
||||
return nil, 0, false, fmt.Errorf("execution aborted (timeout = %v)", timeout)
|
||||
}
|
||||
return res, gas, failed, err
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user