From 937c0ffa204abed2dbd33ee084d42ba345b43526 Mon Sep 17 00:00:00 2001 From: Shargon Date: Mon, 22 Apr 2019 19:38:56 +0200 Subject: [PATCH] Clean comments (#139) --- src/neo-vm/ExecutionEngine.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/neo-vm/ExecutionEngine.cs b/src/neo-vm/ExecutionEngine.cs index fd72b2df..dae3e6de 100644 --- a/src/neo-vm/ExecutionEngine.cs +++ b/src/neo-vm/ExecutionEngine.cs @@ -96,7 +96,6 @@ public ExecutionEngine(IScriptContainer container, ICrypto crypto, IScriptTable /// /// Check if the is possible to overflow the MaxInvocationStack /// - /// Stack /// Return True if are allowed, otherwise False [MethodImpl(MethodImplOptions.AggressiveInlining)] public bool CheckMaxInvocationStack() => InvocationStack.Count < MaxInvocationStackSize; @@ -120,8 +119,8 @@ public ExecutionEngine(IScriptContainer container, ICrypto crypto, IScriptTable /// /// Check if the is possible to overflow the MaxStackSize /// - /// Stack item count /// Is stack count strict? + /// Stack item count /// [MethodImpl(MethodImplOptions.AggressiveInlining)] public bool CheckStackSize(bool strict, int count = 1)