File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 15
15
16
16
<ItemGroup >
17
17
<PackageReference Include =" Nerdbank.GitVersioning" >
18
- <Version >3.4.205 </Version >
18
+ <Version >3.4.220 </Version >
19
19
<PrivateAssets >all</PrivateAssets >
20
20
</PackageReference >
21
21
</ItemGroup >
Original file line number Diff line number Diff line change @@ -84,7 +84,9 @@ void EmitAppCall(JObject json)
84
84
? uint160
85
85
: throw new InvalidOperationException ( $ "contract \" { contract } \" not found") ;
86
86
87
- var operation = json . Value < string > ( "operation" ) ;
87
+ var operation = json . Value < string > ( "operation" )
88
+ ?? throw new JsonException ( "missing operation field" ) ;
89
+
88
90
var args = json . TryGetValue ( "args" , out var jsonArgs )
89
91
? ParseParameters ( jsonArgs ) . ToArray ( )
90
92
: Array . Empty < ContractParameter > ( ) ;
Original file line number Diff line number Diff line change 34
34
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
35
35
<PrivateAssets >all</PrivateAssets >
36
36
</PackageReference >
37
- <PackageReference Include =" MessagePack" Version =" 2.2.85 " />
37
+ <PackageReference Include =" MessagePack" Version =" 2.2.113 " />
38
38
<PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.0.0" PrivateAssets =" All" />
39
- <PackageReference Include =" Neo" Version =" 3.0.0-rc3 " />
40
- <PackageReference Include =" OneOf" Version =" 3.0.186 " />
41
- <PackageReference Include =" rocksdb" Version =" 6.17 .3.16253 " />
42
- <PackageReference Include =" System.IO.Abstractions" Version =" 13.2.33 " />
39
+ <PackageReference Include =" Neo" Version =" 3.0.0-rc4 " />
40
+ <PackageReference Include =" OneOf" Version =" 3.0.190 " />
41
+ <PackageReference Include =" rocksdb" Version =" 6.19 .3.19494 " />
42
+ <PackageReference Include =" System.IO.Abstractions" Version =" 13.2.41 " />
43
43
</ItemGroup >
44
44
</Project >
Original file line number Diff line number Diff line change 15
15
</ItemGroup >
16
16
17
17
<ItemGroup >
18
- <PackageReference Include =" coverlet.collector" Version =" 3.0.3 " >
18
+ <PackageReference Include =" coverlet.collector" Version =" 3.1.0 " >
19
19
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
20
20
<PrivateAssets >all</PrivateAssets >
21
21
</PackageReference >
22
22
<PackageReference Include =" FluentAssertions" Version =" 5.10.3" />
23
23
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.10.0" />
24
24
<PackageReference Include =" Nito.Disposables" Version =" 2.2.0" />
25
- <PackageReference Include =" System.IO.Abstractions.TestingHelpers" Version =" 13.2.33 " />
25
+ <PackageReference Include =" System.IO.Abstractions.TestingHelpers" Version =" 13.2.41 " />
26
26
<PackageReference Include =" xunit" Version =" 2.4.1" />
27
27
<PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.3" >
28
28
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
You can’t perform that action at this time.
0 commit comments