Skip to content

Commit

Permalink
Merge pull request #90 from ethpandaops/pk910/fix-4788
Browse files Browse the repository at this point in the history
Fix leftover from early 4788 deployment
  • Loading branch information
pk910 authored Jan 23, 2024
2 parents 7f60f19 + 601a770 commit 6a952c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/el-gen/genesis_besu.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
**{
"0x" + i.to_bytes(length=20, byteorder='big').hex(): {
"balance": "1",
} for i in [x for x in range(256) if x != 11]
} for i in range(256)
},
data['deposit_contract_address']: {
"balance": "0",
Expand Down
2 changes: 1 addition & 1 deletion apps/el-gen/genesis_chainspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
**{
"0x" + i.to_bytes(length=20, byteorder='big').hex(): {
"balance": "1",
} for i in [x for x in range(256) if x != 11]
} for i in range(256)
},
data['deposit_contract_address']: {
"balance": "0",
Expand Down
2 changes: 1 addition & 1 deletion apps/el-gen/genesis_geth.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
**{
"0x" + i.to_bytes(length=20, byteorder='big').hex(): {
"balance": "1",
} for i in [x for x in range(256) if x != 11]
} for i in range(256)
},
data['deposit_contract_address']: {
"balance": "0",
Expand Down

0 comments on commit 6a952c5

Please sign in to comment.