public ExpressApplicationEngine(ITraceDebugSink traceDebugSink, TriggerType trigger, IVerifiable container, DataCache snapshot, Block?persistingBlock = null, long gas = 2000000000)
            : base(trigger, container, snapshot, persistingBlock, gas)
        {
            this.traceDebugSink = traceDebugSink;

            Log    += OnLog !;
            Notify += OnNotify !;
        }
Beispiel #2
0
        public TraceApplicationEngine(ITraceDebugSink traceDebugSink, TriggerType trigger, IVerifiable container,
                                      DataCache snapshot, Block?persistingBlock, ProtocolSettings settings, long gas,
                                      Diagnostic?diagnostic = null)
            : base(trigger, container, snapshot, persistingBlock, settings, gas, diagnostic)
        {
            this.traceDebugSink = traceDebugSink;

            Log    += OnLog !;
            Notify += OnNotify !;
        }