Skip to content

Commit

Permalink
fix benchmark (neo-project#2924)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim8y committed Oct 3, 2023
1 parent 0e9cb9f commit fdc4389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/Neo.Benchmarks/Benchmarks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private static void Run(string name, string poc)
Stopwatch stopwatch = Stopwatch.StartNew();
engine.Execute();
stopwatch.Stop();
Debug.Assert(engine.State == VMState.HALT);
Debug.Assert(engine.State == VMState.FAULT);
Console.WriteLine($"Benchmark: {name},\tTime: {stopwatch.Elapsed}");
}
}

0 comments on commit fdc4389

Please sign in to comment.