Example #1
0
 public void ReportStorageRead(StorageCell storageCell)
 {
     for (int index = 0; index < _txTracers.Count; index++)
     {
         ITxTracer innerTracer = _txTracers[index];
         if (innerTracer.IsTracingStorage)
         {
             innerTracer.ReportStorageRead(storageCell);
         }
     }
 }