コード例 #1
0
 public TransactionSubstate(EvmExceptionType exceptionType, bool isTracerConnected)
 {
     Error        = isTracerConnected ? exceptionType.ToString() : SomeError;
     Refund       = 0;
     DestroyList  = _emptyDestroyList;
     Logs         = _emptyLogs;
     ShouldRevert = false;
 }
コード例 #2
0
 public TransactionSubstate(EvmExceptionType exceptionType)
 {
     Error        = exceptionType.ToString();
     Refund       = 0;
     DestroyList  = _emptyDestroyList;
     Logs         = _emptyLogs;
     ShouldRevert = false;
 }