Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable blob tx pool for Nethermind #931

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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