Skip to content

Commit

Permalink
fix egg (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 authored Dec 18, 2024
1 parent 1a33496 commit 797316a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/el-gen/genesis_besu.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ def add_alloc_entry(addr, account):
else:
out['config']['cancunTime'] = 0

out['config']['blobSchedule'] = {}
out['config']['blobSchedule']['cancun'] = {
"target": data['target_blobs_per_block_cancun'],
"max": data['max_blobs_per_block_cancun']
Expand Down
3 changes: 2 additions & 1 deletion apps/el-gen/genesis_chainspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@ def add_alloc_entry(addr, account):
out['params']['eip5656TransitionTimestamp'] = 0
out['params']['eip6780TransitionTimestamp'] = 0

# if blobSchedule is in the config, add the cancun blobSchedule
# add the cancun blobSchedule
out['params']['blobSchedule'] = {}
out['params']['blobSchedule']['cancun'] = {
"target": data['target_blobs_per_block_cancun'],
"max": data['max_blobs_per_block_cancun']
Expand Down
1 change: 1 addition & 0 deletions apps/el-gen/genesis_geth.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ def add_alloc_entry(addr, account):
else:
out['config']['cancunTime'] = 0

out['config']['blobSchedule'] = {}
out['config']['blobSchedule']['cancun'] = {
"target": data['target_blobs_per_block_cancun'],
"max": data['max_blobs_per_block_cancun']
Expand Down

0 comments on commit 797316a

Please sign in to comment.