Skip to content

Commit

Permalink
update dependency: Neo v3.0.0-preview2-04
Browse files Browse the repository at this point in the history
Close #1
  • Loading branch information
erikzhang committed Jul 9, 2018
1 parent 90d1d63 commit 041c489
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ApplicationLogs/ApplicationLogs.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>3.0.0-preview2-03</Version>
<Version>3.0.0-preview2-04</Version>
<TargetFrameworks>netstandard2.0;net47</TargetFrameworks>
<RootNamespace>Neo.Plugins</RootNamespace>
</PropertyGroup>
Expand All @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Neo" Version="3.0.0-preview2-03" />
<PackageReference Include="Neo" Version="3.0.0-preview2-04" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion SimplePolicy/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ internal class BlockedAccounts
public BlockedAccounts(IConfigurationSection section)
{
this.Type = (PolicyType)Enum.Parse(typeof(PolicyType), section.GetSection("Type").Value, true);
this.List = new HashSet<UInt160>(section.GetSection("List").GetChildren().Select(p => Wallet.ToScriptHash(p.Value)));
this.List = new HashSet<UInt160>(section.GetSection("List").GetChildren().Select(p => p.Value.ToScriptHash()));
}
}
}
6 changes: 3 additions & 3 deletions SimplePolicy/SimplePolicy.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>3.0.0-preview2-02</Version>
<Version>3.0.0-preview2-04</Version>
<TargetFrameworks>netstandard2.0;net47</TargetFrameworks>
<RootNamespace>Neo.Plugins</RootNamespace>
</PropertyGroup>
Expand All @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Neo" Version="3.0.0-preview2-02" />
<PackageReference Include="Neo" Version="3.0.0-preview2-04" />
</ItemGroup>

</Project>

0 comments on commit 041c489

Please sign in to comment.