diff --git a/src/Nethermind/Nethermind.BeaconNode.OApi/BeaconNodeOApi-generated.cs b/src/Nethermind/Nethermind.BeaconNode.OApi/BeaconNodeOApi-generated.cs index 5e33b463ddd..c38ebab15bf 100644 --- a/src/Nethermind/Nethermind.BeaconNode.OApi/BeaconNodeOApi-generated.cs +++ b/src/Nethermind/Nethermind.BeaconNode.OApi/BeaconNodeOApi-generated.cs @@ -1,4 +1,4 @@ -//---------------------- +//---------------------- // // Generated using the NSwag toolchain v13.1.6.0 (NJsonSchema v10.0.28.0 (Newtonsoft.Json v11.0.0.0)) (http://NSwag.org) // @@ -21,7 +21,7 @@ public interface IBeaconNodeOApiController /// Request successful System.Threading.Tasks.Task VersionAsync(); - /// Poll to see if the the beacon node is syncing. + /// Poll to see if the beacon node is syncing. /// Request successful System.Threading.Tasks.Task SyncingAsync(); @@ -82,7 +82,7 @@ public System.Threading.Tasks.Task Version() return _implementation.VersionAsync(); } - /// Poll to see if the the beacon node is syncing. + /// Poll to see if the beacon node is syncing. /// Request successful [Microsoft.AspNetCore.Mvc.HttpGet, Microsoft.AspNetCore.Mvc.Route("node/syncing")] public System.Threading.Tasks.Task Syncing() @@ -888,4 +888,4 @@ public System.Collections.Generic.IDictionary AdditionalProperti #pragma warning restore 1573 #pragma warning restore 472 #pragma warning restore 114 -#pragma warning restore 108 \ No newline at end of file +#pragma warning restore 108 diff --git a/src/Nethermind/Nethermind.BeaconNode.OApi/Controllers/NodeSyncingController.cs b/src/Nethermind/Nethermind.BeaconNode.OApi/Controllers/NodeSyncingController.cs index 29a619be10a..262f5c84f08 100644 --- a/src/Nethermind/Nethermind.BeaconNode.OApi/Controllers/NodeSyncingController.cs +++ b/src/Nethermind/Nethermind.BeaconNode.OApi/Controllers/NodeSyncingController.cs @@ -24,7 +24,7 @@ public NodeSyncingController(ILogger logger, IBeaconNodeA _beaconNode = beaconNode; } - /// Poll to see if the the beacon node is syncing. + /// Poll to see if the beacon node is syncing. /// /// /// Requests the beacon node to describe if it's currently syncing or not, and if it is, what block it is up to. This is modelled after the Eth1.0 JSON-RPC eth_syncing call. diff --git a/src/Nethermind/Nethermind.BeaconNode.OApi/apis/validator/beacon-node-oapi.yaml b/src/Nethermind/Nethermind.BeaconNode.OApi/apis/validator/beacon-node-oapi.yaml index 634cec3f427..c247180e838 100644 --- a/src/Nethermind/Nethermind.BeaconNode.OApi/apis/validator/beacon-node-oapi.yaml +++ b/src/Nethermind/Nethermind.BeaconNode.OApi/apis/validator/beacon-node-oapi.yaml @@ -47,7 +47,7 @@ paths: get: tags: - MinimalSet - summary: "Poll to see if the the beacon node is syncing." + summary: "Poll to see if the beacon node is syncing." description: "Requests the beacon node to describe if it's currently syncing or not, and if it is, what block it is up to. This is modelled after the Eth1.0 JSON-RPC eth_syncing call.." responses: 200: diff --git a/src/Nethermind/Nethermind.BeaconNode.OApiClient/BeaconNodeOApiClient-generated.cs b/src/Nethermind/Nethermind.BeaconNode.OApiClient/BeaconNodeOApiClient-generated.cs index eaaf6111a83..a86815737b1 100644 --- a/src/Nethermind/Nethermind.BeaconNode.OApiClient/BeaconNodeOApiClient-generated.cs +++ b/src/Nethermind/Nethermind.BeaconNode.OApiClient/BeaconNodeOApiClient-generated.cs @@ -121,7 +121,7 @@ public async System.Threading.Tasks.Task VersionAsync(System.Threading.C } } - /// Poll to see if the the beacon node is syncing. + /// Poll to see if the beacon node is syncing. /// Request successful /// A server side error occurred. public System.Threading.Tasks.Task SyncingAsync() @@ -130,7 +130,7 @@ public System.Threading.Tasks.Task SyncingAsync() } /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. - /// Poll to see if the the beacon node is syncing. + /// Poll to see if the beacon node is syncing. /// Request successful /// A server side error occurred. public async System.Threading.Tasks.Task SyncingAsync(System.Threading.CancellationToken cancellationToken) @@ -1894,4 +1894,4 @@ public ApiException(string message, int statusCode, string response, System.Coll #pragma warning restore 1573 #pragma warning restore 472 #pragma warning restore 114 -#pragma warning restore 108 \ No newline at end of file +#pragma warning restore 108 diff --git a/src/Nethermind/Nethermind.BeaconNode.Test/EpochProcessing/ProcessRegistryUpdatesTest.cs b/src/Nethermind/Nethermind.BeaconNode.Test/EpochProcessing/ProcessRegistryUpdatesTest.cs index 9235ab108b2..c5f21e5067a 100644 --- a/src/Nethermind/Nethermind.BeaconNode.Test/EpochProcessing/ProcessRegistryUpdatesTest.cs +++ b/src/Nethermind/Nethermind.BeaconNode.Test/EpochProcessing/ProcessRegistryUpdatesTest.cs @@ -95,7 +95,7 @@ public void ActivationQueueSorting() state.Validators[mockActivations - 2].ActivationEpoch.ShouldBe(chainConstants.FarFutureEpoch); //# the one at churn_limit - 1 did not make it, it was out-prioritized state.Validators[churnLimit - 1].ActivationEpoch.ShouldBe(chainConstants.FarFutureEpoch); - //# but the the one in front of the above did + //# but the one in front of the above did state.Validators[churnLimit - 2].ActivationEpoch.ShouldNotBe(chainConstants.FarFutureEpoch); }