Example #1
0
 public void ReportNonceChange(Address address, UInt256?before, UInt256?after)
 {
     for (int index = 0; index < _txTracers.Count; index++)
     {
         ITxTracer innerTracer = _txTracers[index];
         if (innerTracer.IsTracingState)
         {
             innerTracer.ReportNonceChange(address, before, after);
         }
     }
 }