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; } 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