Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Neo.VM/Types/InteropInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ public override T GetInterface<T>()
throw new InvalidCastException($"The item can't be casted to type {typeof(T)}");
}

public object GetInterface()
{
return _object;
}

public override string ToString()
{
return _object.ToString() ?? "NULL";
Expand Down