Exemplo n.º 1
0
 public TransactionSubstate(EvmExceptionType exceptionType, bool isTracerConnected)
 {
     Error        = isTracerConnected ? exceptionType.ToString() : SomeError;
     Refund       = 0;
     DestroyList  = _emptyDestroyList;
     Logs         = _emptyLogs;
     ShouldRevert = false;
 }
Exemplo n.º 2
0
 public TransactionSubstate(EvmExceptionType exceptionType)
 {
     Error        = exceptionType.ToString();
     Refund       = 0;
     DestroyList  = _emptyDestroyList;
     Logs         = _emptyLogs;
     ShouldRevert = false;
 }