Skip to content

Commit

Permalink
Merge pull request #38 from SubstrateGaming/monthly_updates_11_24
Browse files Browse the repository at this point in the history
updated with client fix
  • Loading branch information
darkfriend77 authored Nov 24, 2024
2 parents 9b9a865 + 979e5e1 commit 3e23bf0
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Substrate.Ajuna.NET/.config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"substrate.dotnet": {
"version": "0.6.8",
"version": "0.6.9",
"commands": [
"substrate"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,7 @@ public async Task<bool> ConnectAsync(bool useMetadata, bool standardSubstrate, C
{
if (!IsConnected)
{
try
{
await SubstrateClient.ConnectAsync(useMetadata, standardSubstrate, token);
}
catch (Exception e)
{
Log.Error("BaseClient.ConnectAsync: {0}",
e.ToString());
}
await SubstrateClient.ConnectAsync(useMetadata, standardSubstrate, token);
}

return IsConnected;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,7 @@ public async Task<bool> ConnectAsync(bool useMetadata, bool standardSubstrate, C
{
if (!IsConnected)
{
try
{
await SubstrateClient.ConnectAsync(useMetadata, standardSubstrate, token);
}
catch (Exception e)
{
Log.Error("BaseClient.ConnectAsync: {0}",
e.ToString());
}
await SubstrateClient.ConnectAsync(useMetadata, standardSubstrate, token);
}

return IsConnected;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<PackageId>Substrate.Ajuna.NET.Extension</PackageId>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
<Version>1.802.0</Version>
<Version>1.802.1</Version>
<Company>Substrate Gaming</Company>
<Authors>Substrate Gaming</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Substrate.ServiceLayer.Model" Version="0.6.8" />
<PackageReference Include="Substrate.ServiceLayer.Model" Version="0.6.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Substrate.Ajuna.NET.RestClient\Substrate.Ajuna.NET.RestClient.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Substrate.ServiceLayer.Model" Version="0.6.8" />
<PackageReference Include="Substrate.ServiceLayer.Model" Version="0.6.9" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Substrate.ServiceLayer.Model" Version="0.6.8" />
<PackageReference Include="Substrate.ServiceLayer.Model" Version="0.6.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Substrate.Ajuna.NET.NetApiExt\Substrate.Ajuna.NET.NetApiExt.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
<PackageReference Include="Serilog.Enrichers.Thread" Version="3.1.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.2" />
<PackageReference Include="Substrate.AspNetCore" Version="0.6.8" />
<PackageReference Include="Substrate.ServiceLayer" Version="0.6.8" />
<PackageReference Include="Substrate.AspNetCore" Version="0.6.9" />
<PackageReference Include="Substrate.ServiceLayer" Version="0.6.9" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 3e23bf0

Please sign in to comment.