예제 #1
0
 public ExecutionContextWrapper(Neo.VM.ExecutionContext context)
 {
     NativeContext   = context;
     EvaluationStack = new StackWrapper(context.EvaluationStack);
     AltStack        = new StackWrapper(context.AltStack);
 }
 public static ExecutionContextWrapper ConvertFromNative(this Neo.VM.ExecutionContext context)
 {
     return(new ExecutionContextWrapper(context));
 }