コード例 #1
0
 public void ReportOperationError(EvmExceptionType error)
 {
     for (int index = 0; index < _txTracers.Count; index++)
     {
         ITxTracer innerTracer = _txTracers[index];
         if (innerTracer.IsTracingInstructions)
         {
             innerTracer.ReportOperationError(error);
         }
     }
 }