Skip to content

Commit

Permalink
Update BlockchainMethods.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
cschuchardt88 committed Jan 3, 2024
1 parent 307d263 commit 23d9a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WebSocketServer/v1/BlockchainMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public JToken InvokeContract(JArray _params)

try
{
if (_params.Count >= 1 && UInt160.TryParse(_params[0]?.AsString(), out scriptHash))
if (_params.Count >= 1 && UInt160.TryParse(_params[0]!.AsString(), out scriptHash))
{
if (_params.Count >= 2)
{
Expand Down

0 comments on commit 23d9a34

Please sign in to comment.