Beispiel #1
0
 public void ReportOperationRemainingGas(long gas)
 {
     for (int index = 0; index < _txTracers.Count; index++)
     {
         ITxTracer innerTracer = _txTracers[index];
         if (innerTracer.IsTracingInstructions)
         {
             innerTracer.ReportOperationRemainingGas(gas);
         }
     }
 }