Skip to content

Commit

Permalink
Merge master into oxford
Browse files Browse the repository at this point in the history
  • Loading branch information
Groxan committed Feb 5, 2024
2 parents 9df11c5 + 82506cc commit d849758
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Tzkt.Api.Tests/Tzkt.Api.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<LangVersion>10</LangVersion>
<AssemblyVersion>1.12.4</AssemblyVersion>
<AssemblyVersion>1.12.5</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public async Task<IEnumerable<SmartRollupExecuteOperation>> GetSmartRollupExecut
StorageLimit = row.StorageLimit,
StorageUsed = row.StorageUsed,
BakerFee = row.BakerFee,
StorageFee = row.StorageFee,
StorageFee = row.StorageFee ?? 0,
Status = OpStatuses.ToString(row.Status),
Rollup = row.SmartRollupId == null ? null : Accounts.GetAlias(row.SmartRollupId),
Commitment = row.cId == null ? null : new()
Expand Down Expand Up @@ -239,7 +239,7 @@ public async Task<object[][]> GetSmartRollupExecuteOps(SrOperationFilter filter,
break;
case "storageFee":
foreach (var row in rows)
result[j++][i] = row.StorageFee;
result[j++][i] = row.StorageFee ?? 0;
break;
case "status":
foreach (var row in rows)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public async Task<IEnumerable<SmartRollupOriginateOperation>> GetSmartRollupOrig
StorageLimit = row.StorageLimit,
StorageUsed = row.StorageUsed,
BakerFee = row.BakerFee,
StorageFee = row.StorageFee,
StorageFee = row.StorageFee ?? 0,
Status = OpStatuses.ToString(row.Status),
PvmKind = PvmKinds.ToString((int)row.PvmKind),
Kernel = row.Kernel,
Expand Down Expand Up @@ -188,7 +188,7 @@ public async Task<object[][]> GetSmartRollupOriginateOps(SrOperationFilter filte
break;
case "storageFee":
foreach (var row in rows)
result[j++][i] = row.StorageFee;
result[j++][i] = row.StorageFee ?? 0;
break;
case "status":
foreach (var row in rows)
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Api/Swagger/Swagger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public static class Swagger
{
const string Version = "1.12.4";
const string Version = "1.12.5";
const string Path = "/v1/swagger.json";

public static void AddOpenApiDocument(this IServiceCollection services)
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Api/Tzkt.Api.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<AssemblyVersion>1.12.4</AssemblyVersion>
<AssemblyVersion>1.12.5</AssemblyVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Data/Tzkt.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<AssemblyVersion>1.12.4</AssemblyVersion>
<AssemblyVersion>1.12.5</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Sync.Tests/Tzkt.Sync.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyVersion>1.12.4</AssemblyVersion>
<AssemblyVersion>1.12.5</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Sync/Tzkt.Sync.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<AssemblyVersion>1.12.4</AssemblyVersion>
<AssemblyVersion>1.12.5</AssemblyVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit d849758

Please sign in to comment.