From ab01d6454fb1af212bbb29632eed509f7fc205e6 Mon Sep 17 00:00:00 2001 From: Marcin Sobczak <77129288+marcindsobczak@users.noreply.github.com> Date: Wed, 27 Dec 2023 10:42:22 +0100 Subject: [PATCH] clients/nethermind: update TxPool config Nethermind recently refactored blob pool to support blob transaction reorgs, introducing an additional flag. We decided to consolidate three blob pool-related flags into one enum. This PR enables support for blob transactions + persistent blob storage + blob transactions reorgs. --- clients/nethermind/mkconfig.jq | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clients/nethermind/mkconfig.jq b/clients/nethermind/mkconfig.jq index ed2e74fee2..5f19c00a66 100644 --- a/clients/nethermind/mkconfig.jq +++ b/clients/nethermind/mkconfig.jq @@ -73,8 +73,7 @@ def txpool_config: if env.HIVE_CANCUN_TIMESTAMP != null then { "TxPool": { - "BlobSupportEnabled": true, - "PersistentBlobStorageEnabled": true + "BlobsSupport": "StorageWithReorgs" } } else