Skip to content

Commit

Permalink
Merge branch 'master' into add_bloomFilter_to_levelDB
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiao-Jin committed Jul 14, 2020
2 parents e3397a8 + 70f65d4 commit 5107c5b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/LevelDBStore/LevelDBStore.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>3.0.0-preview2</Version>
Expand All @@ -15,7 +15,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Neo" Version="3.0.0-CI00966" />
<PackageReference Include="Neo" Version="3.0.0-CI00970" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/LevelDBStore/Plugins/Storage/LevelDBStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Neo.Plugins.Storage
{
public class LevelDBStore : Plugin, IStoragePlugin
public class LevelDBStore : Plugin, IStorageProvider
{
private string path;
private int bloomFilterBitsPerKey;
Expand Down
2 changes: 1 addition & 1 deletion src/RocksDBStore/Plugins/Storage/RocksDBStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Neo.Plugins.Storage
{
public class RocksDBStore : Plugin, IStoragePlugin
public class RocksDBStore : Plugin, IStorageProvider
{
public override string Description => "Uses RocksDBStore to store the blockchain data";

Expand Down
4 changes: 2 additions & 2 deletions src/RocksDBStore/RocksDBStore.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>3.0.0-preview2</Version>
Expand All @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Neo" Version="3.0.0-CI00966" />
<PackageReference Include="Neo" Version="3.0.0-CI00970" />
<PackageReference Include="RocksDbNative" Version="6.2.2" />
<PackageReference Include="RocksDbSharp" Version="6.2.2" />
</ItemGroup>
Expand Down

0 comments on commit 5107c5b

Please sign in to comment.