From 35d29c5f19a0d1333e00c03ada234912097b7267 Mon Sep 17 00:00:00 2001 From: yerke26 Date: Mon, 2 Dec 2024 06:24:03 +0500 Subject: [PATCH] fix whitespaces --- .../Nethermind.Core.Test/Blockchain/TestBlockchain.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nethermind/Nethermind.Core.Test/Blockchain/TestBlockchain.cs b/src/Nethermind/Nethermind.Core.Test/Blockchain/TestBlockchain.cs index ff89eb204a3..0fb37a4673b 100644 --- a/src/Nethermind/Nethermind.Core.Test/Blockchain/TestBlockchain.cs +++ b/src/Nethermind/Nethermind.Core.Test/Blockchain/TestBlockchain.cs @@ -445,7 +445,7 @@ private async Task AddBlockInternal(params Transaction[] trans Timestamper.Add(TimeSpan.FromSeconds(1)); var headProcessed = new SemaphoreSlim(0); TxPool.TxPoolHeadChanged += (s, a) => headProcessed.Release(); - await BlockProductionTrigger.BuildBlock(payloadAttributes: new PayloadAttributes {TargetBlobCount = 0}).ConfigureAwait(false); + await BlockProductionTrigger.BuildBlock(payloadAttributes: new PayloadAttributes { TargetBlobCount = 0 }).ConfigureAwait(false); await headProcessed.WaitAsync().ConfigureAwait(false); return txResults; }