Skip to content

Commit

Permalink
fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Pierson committed Jun 22, 2020
1 parent 626f5b8 commit 853b91f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/neo/Plugins/ITraceDebugPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ namespace Neo.Plugins
public interface ITraceDebugPlugin
{
bool ShouldTrace(Header header, Transaction tx);

ITraceDebugSink GetSink(Header header, Transaction tx);
ITraceDebugSink GetSink(Header header, Transaction tx);
}
}
2 changes: 1 addition & 1 deletion src/neo/Plugins/ITraceDebugSink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Neo.Plugins
{
public interface ITraceDebugSink : IDisposable
{
void Trace(VMState vmState, IReadOnlyCollection<ExecutionContext> stackFrames,
void Trace(VMState vmState, IReadOnlyCollection<ExecutionContext> stackFrames,
IEnumerable<(UInt160 scriptHash, byte[] key, StorageItem item)> storages);
void Log(LogEventArgs args);
void Notify(NotifyEventArgs args);
Expand Down
2 changes: 1 addition & 1 deletion src/neo/SmartContract/ApplicationEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ internal void Trace()
traceDebugSink.Trace(State, InvocationStack, storages);
}

IEnumerable<(UInt160 scriptHash, byte[] key, StorageItem item)> GetStorages(UInt160 scriptHash)
IEnumerable<(UInt160 scriptHash, byte[] key, StorageItem item)> GetStorages(UInt160 scriptHash)
{
var contractState = Snapshot.Contracts.TryGet(scriptHash);
return contractState != null
Expand Down

0 comments on commit 853b91f

Please sign in to comment.