Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
Clean comments (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Apr 22, 2019
1 parent 1adff44 commit 937c0ff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/neo-vm/ExecutionEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ public ExecutionEngine(IScriptContainer container, ICrypto crypto, IScriptTable
/// <summary>
/// Check if the is possible to overflow the MaxInvocationStack
/// </summary>
/// <param name="stack">Stack</param>
/// <returns>Return True if are allowed, otherwise False</returns>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool CheckMaxInvocationStack() => InvocationStack.Count < MaxInvocationStackSize;
Expand All @@ -120,8 +119,8 @@ public ExecutionEngine(IScriptContainer container, ICrypto crypto, IScriptTable
/// <summary>
/// Check if the is possible to overflow the MaxStackSize
/// </summary>
/// <param name="count">Stack item count</param>
/// <param name="strict">Is stack count strict?</param>
/// <param name="count">Stack item count</param>
/// <returns></returns>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool CheckStackSize(bool strict, int count = 1)
Expand Down

0 comments on commit 937c0ff

Please sign in to comment.