From 6a6814a119d15cb20666e52a8c14ecb8c02c2ee4 Mon Sep 17 00:00:00 2001 From: Lautaro Emanuel <31224949+emlautarom1@users.noreply.github.com> Date: Wed, 4 Sep 2024 15:27:44 -0300 Subject: [PATCH 1/2] `TxDecoders` folder renaming (#7398) --- .../{MyTxDecoder => TxDecoders}/AccessListTxDecoder.cs | 0 .../{MyTxDecoder => TxDecoders}/BaseTxDecoder.cs | 0 .../{MyTxDecoder => TxDecoders}/BlobTxDecoder.cs | 0 .../{MyTxDecoder => TxDecoders}/EIP1559TxDecoder.cs | 0 .../{MyTxDecoder => TxDecoders}/ITxDecoder.cs | 0 .../{MyTxDecoder => TxDecoders}/LegacyTxDecoder.cs | 0 .../{MyTxDecoder => TxDecoders}/OptimismTxDecoder.cs | 0 .../{MyTxDecoder => TxDecoders}/SignatureBuilder.cs | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename src/Nethermind/Nethermind.Serialization.Rlp/{MyTxDecoder => TxDecoders}/AccessListTxDecoder.cs (100%) rename src/Nethermind/Nethermind.Serialization.Rlp/{MyTxDecoder => TxDecoders}/BaseTxDecoder.cs (100%) rename src/Nethermind/Nethermind.Serialization.Rlp/{MyTxDecoder => TxDecoders}/BlobTxDecoder.cs (100%) rename src/Nethermind/Nethermind.Serialization.Rlp/{MyTxDecoder => TxDecoders}/EIP1559TxDecoder.cs (100%) rename src/Nethermind/Nethermind.Serialization.Rlp/{MyTxDecoder => TxDecoders}/ITxDecoder.cs (100%) rename src/Nethermind/Nethermind.Serialization.Rlp/{MyTxDecoder => TxDecoders}/LegacyTxDecoder.cs (100%) rename src/Nethermind/Nethermind.Serialization.Rlp/{MyTxDecoder => TxDecoders}/OptimismTxDecoder.cs (100%) rename src/Nethermind/Nethermind.Serialization.Rlp/{MyTxDecoder => TxDecoders}/SignatureBuilder.cs (100%) diff --git a/src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/AccessListTxDecoder.cs b/src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/AccessListTxDecoder.cs similarity index 100% rename from src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/AccessListTxDecoder.cs rename to src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/AccessListTxDecoder.cs diff --git a/src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/BaseTxDecoder.cs b/src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/BaseTxDecoder.cs similarity index 100% rename from src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/BaseTxDecoder.cs rename to src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/BaseTxDecoder.cs diff --git a/src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/BlobTxDecoder.cs b/src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/BlobTxDecoder.cs similarity index 100% rename from src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/BlobTxDecoder.cs rename to src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/BlobTxDecoder.cs diff --git a/src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/EIP1559TxDecoder.cs b/src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/EIP1559TxDecoder.cs similarity index 100% rename from src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/EIP1559TxDecoder.cs rename to src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/EIP1559TxDecoder.cs diff --git a/src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/ITxDecoder.cs b/src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/ITxDecoder.cs similarity index 100% rename from src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/ITxDecoder.cs rename to src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/ITxDecoder.cs diff --git a/src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/LegacyTxDecoder.cs b/src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/LegacyTxDecoder.cs similarity index 100% rename from src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/LegacyTxDecoder.cs rename to src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/LegacyTxDecoder.cs diff --git a/src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/OptimismTxDecoder.cs b/src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/OptimismTxDecoder.cs similarity index 100% rename from src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/OptimismTxDecoder.cs rename to src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/OptimismTxDecoder.cs diff --git a/src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/SignatureBuilder.cs b/src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/SignatureBuilder.cs similarity index 100% rename from src/Nethermind/Nethermind.Serialization.Rlp/MyTxDecoder/SignatureBuilder.cs rename to src/Nethermind/Nethermind.Serialization.Rlp/TxDecoders/SignatureBuilder.cs From f8527c9af3264fc8394f7b157916ad25102d8ac5 Mon Sep 17 00:00:00 2001 From: Tanishq Jasoria Date: Wed, 4 Sep 2024 20:28:10 +0200 Subject: [PATCH 2/2] change PruningBoundry setting log to Info (#7396) --- src/Nethermind/Nethermind.Init/InitializeStateDb.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nethermind/Nethermind.Init/InitializeStateDb.cs b/src/Nethermind/Nethermind.Init/InitializeStateDb.cs index e8895a4e84a..8ca20a82750 100644 --- a/src/Nethermind/Nethermind.Init/InitializeStateDb.cs +++ b/src/Nethermind/Nethermind.Init/InitializeStateDb.cs @@ -70,7 +70,7 @@ public Task Execute(CancellationToken cancellationToken) if (syncConfig.SnapServingEnabled == true && pruningConfig.PruningBoundary < 128) { - if (_logger.IsWarn) _logger.Warn($"Snap serving enabled, but {nameof(pruningConfig.PruningBoundary)} is less than 128. Setting to 128."); + if (_logger.IsInfo) _logger.Info($"Snap serving enabled, but {nameof(pruningConfig.PruningBoundary)} is less than 128. Setting to 128."); pruningConfig.PruningBoundary = 128; }