Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

3.3.0 #862

Merged
merged 8 commits into from
May 31, 2022
Merged

3.3.0 #862

Show file tree
Hide file tree
Changes from all commits
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
4 changes: 3 additions & 1 deletion neo-cli/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"MinDesiredConnections": 10,
"MaxConnections": 40,
"MaxConnectionsPerAddress": 3

},
"UnlockWallet": {
"Path": "",
Expand All @@ -30,6 +29,9 @@
"MaxTransactionsPerBlock": 512,
"MemoryPoolMaxTransactions": 50000,
"MaxTraceableBlocks": 2102400,
"Hardforks": {
"HF_Aspidochelone": 1730000
},
"InitialGasDistribution": 5200000000000000,
"ValidatorsCount": 7,
"StandbyCommittee": [
Expand Down
3 changes: 3 additions & 0 deletions neo-cli/config.mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
"MaxTransactionsPerBlock": 512,
"MemoryPoolMaxTransactions": 50000,
"MaxTraceableBlocks": 2102400,
"Hardforks": {
"HF_Aspidochelone": 1730000
},
"InitialGasDistribution": 5200000000000000,
"ValidatorsCount": 7,
"StandbyCommittee": [
Expand Down
3 changes: 3 additions & 0 deletions neo-cli/config.testnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
"MaxTransactionsPerBlock": 5000,
"MemoryPoolMaxTransactions": 50000,
"MaxTraceableBlocks": 2102400,
"Hardforks": {
"HF_Aspidochelone": 210000
},
"InitialGasDistribution": 5200000000000000,
"ValidatorsCount": 7,
"StandbyCommittee": [
Expand Down
4 changes: 2 additions & 2 deletions neo-cli/neo-cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Copyright>2016-2022 The Neo Project</Copyright>
<AssemblyTitle>Neo.CLI</AssemblyTitle>
<Version>3.2.1</Version>
<Version>3.3.0</Version>
<Authors>The Neo Project</Authors>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>neo-cli</AssemblyName>
Expand All @@ -23,7 +23,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Neo" Version="3.2.1-CI01367" />
<PackageReference Include="Neo" Version="3.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion neo-gui/neo-gui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Copyright>2016-2022 The Neo Project</Copyright>
<AssemblyTitle>Neo.GUI</AssemblyTitle>
<Version>3.2.1</Version>
<Version>3.3.0</Version>
<Authors>The Neo Project</Authors>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.9" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.9" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
</ItemGroup>

<ItemGroup>
Expand Down