Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Shawn committed Apr 24, 2020
1 parent 54ad1b0 commit 5c01853
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion templates/Template.NEP5.CSharp/NEP5.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public partial class NEP5 : SmartContract
static readonly byte[] StoragePrefixContract = new byte[] { 0x02, 0x02 };
#endregion

// TODO add comments
// When this contract address is included in the transaction signature,
// this method will be triggered as a VerificationTrigger to verify that the signature is correct.
public static bool Verify()
{
return Runtime.CheckWitness(Owner);
Expand Down
1 change: 0 additions & 1 deletion tests/Neo.Compiler.MSIL.UnitTests/Utils/TestEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ public EvaluationStack ExecuteTestCaseStandard(string methodname, params StackIt
var bfault = (this.State & VMState.FAULT) > 0;
var bhalt = (this.State & VMState.HALT) > 0;
if (bfault || bhalt) break;
if (bfault) break;
Console.WriteLine("op:[" +
this.CurrentContext.InstructionPointer.ToString("X04") +
"]" +
Expand Down

0 comments on commit 5c01853

Please sign in to comment.