Skip to content

Commit

Permalink
Merge pull request #931 from flcl42/master
Browse files Browse the repository at this point in the history
Enable blob tx pool for Nethermind
  • Loading branch information
MariusVanDerWijden authored Oct 24, 2023
2 parents 384794e + 6763ab3 commit 7ac63c7
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion clients/nethermind/mkconfig.jq
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,19 @@ def sync_config:
end
;

def txpool_config:
if env.HIVE_CANCUN_TIMESTAMP != null then
{
"TxPool": {
"BlobSupportEnabled": true,
"PersistentBlobStorageEnabled": true
}
}
else
{}
end
;

def base_config:
{
"Init": {
Expand Down Expand Up @@ -101,4 +114,4 @@ def base_config:
;

# This is the main expression that outputs the config.
base_config * keystore_config * merge_config * json_rpc_config * sync_config
base_config * keystore_config * merge_config * json_rpc_config * sync_config * txpool_config

0 comments on commit 7ac63c7

Please sign in to comment.