Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Jan 23, 2025
1 parent 4973704 commit a8f95c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neo
Submodule neo updated 35 files
+1 −1 src/Neo.VM/JumpTable/JumpTable.Splice.cs
+99 −0 src/Neo/Cryptography/Ed25519.cs
+2 −1 src/Neo/Hardfork.cs
+2 −0 src/Neo/Neo.csproj
+59 −7 src/Neo/ProtocolSettings.cs
+37 −1 src/Neo/SmartContract/ApplicationEngine.cs
+1 −1 src/Neo/SmartContract/Contract.cs
+2 −1 src/Neo/SmartContract/Native/ContractMethodAttribute.cs
+2 −1 src/Neo/SmartContract/Native/ContractMethodMetadata.cs
+31 −0 src/Neo/SmartContract/Native/CryptoLib.cs
+1 −1 src/Neo/SmartContract/Native/FungibleToken.cs
+18 −11 src/Neo/SmartContract/Native/NativeContract.cs
+48 −4 src/Neo/SmartContract/Native/NeoToken.cs
+21 −2 src/Neo/SmartContract/Native/RoleManagement.cs
+23 −0 src/Neo/SmartContract/Native/StdLib.cs
+0 −0 src/Plugins/StatelessBlock/StatelessBlock.cs
+0 −0 src/Plugins/StatelessBlock/StatelessBlock.csproj
+162 −0 tests/Neo.UnitTests/Cryptography/UT_Ed25519.cs
+55 −0 tests/Neo.UnitTests/SmartContract/Native/UT_CryptoLib.cs
+25 −7 tests/Neo.UnitTests/SmartContract/Native/UT_NativeContract.cs
+109 −0 tests/Neo.UnitTests/SmartContract/Native/UT_NeoToken.cs
+20 −0 tests/Neo.UnitTests/SmartContract/Native/UT_StdLib.cs
+13 −2 tests/Neo.UnitTests/SmartContract/UT_ApplicationEngine.Contract.cs
+8 −3 tests/Neo.UnitTests/SmartContract/UT_ApplicationEngineProvider.cs
+15 −2 tests/Neo.UnitTests/SmartContract/UT_Contract.cs
+8 −3 tests/Neo.UnitTests/SmartContract/UT_Helper.cs
+29 −19 tests/Neo.UnitTests/SmartContract/UT_InteropPrices.cs
+4 −4 tests/Neo.UnitTests/SmartContract/UT_InteropService.NEO.cs
+24 −18 tests/Neo.UnitTests/SmartContract/UT_InteropService.cs
+21 −6 tests/Neo.UnitTests/SmartContract/UT_JsonSerializer.cs
+11 −2 tests/Neo.UnitTests/SmartContract/UT_NotifyEventArgs.cs
+31 −22 tests/Neo.UnitTests/SmartContract/UT_Syscalls.cs
+5 −5 tests/Neo.UnitTests/UT_ProtocolSettings.cs
+17 −5 tests/Neo.UnitTests/VM/UT_Helper.cs
+44 −0 tests/Neo.VM.Tests/Tests/OpCodes/Splice/SUBSTR.json
4 changes: 2 additions & 2 deletions tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.2" />
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit a8f95c9

Please sign in to comment.