Skip to content

Commit

Permalink
Merge pull request #48 from ethpandaops/add-bytecode
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Aug 11, 2023
2 parents 998a495 + e6d2de7 commit 1a07d10
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion apps/el-gen/genesis_besu.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@
**{
"0x" + i.to_bytes(length=20, byteorder='big').hex(): {
"balance": "1",
} for i in range(256)
} for i in [x for x in range(256) if x != 11]
},
'0x000000000000000000000000000000000000000b': {
"balance": "0",
"nonce": "1",
"code": "0x3373fffffffffffffffffffffffffffffffffffffffe14604457602036146024575f5ffd5b620180005f350680545f35146037575f5ffd5b6201800001545f5260205ff35b42620180004206555f3562018000420662018000015500"
},
data['deposit_contract_address']: {
"balance": "0",
Expand Down
7 changes: 6 additions & 1 deletion apps/el-gen/genesis_chainspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,12 @@
**{
"0x" + i.to_bytes(length=20, byteorder='big').hex(): {
"balance": "1",
} for i in range(256)
} for i in [x for x in range(256) if x != 11]
},
'0x000000000000000000000000000000000000000b': {
"balance": "0",
"nonce": "1",
"code": "0x3373fffffffffffffffffffffffffffffffffffffffe14604457602036146024575f5ffd5b620180005f350680545f35146037575f5ffd5b6201800001545f5260205ff35b42620180004206555f3562018000420662018000015500"
},
data['deposit_contract_address']: {
"balance": "0",
Expand Down
7 changes: 6 additions & 1 deletion apps/el-gen/genesis_geth.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,12 @@
**{
"0x" + i.to_bytes(length=20, byteorder='big').hex(): {
"balance": "1",
} for i in range(256)
} for i in [x for x in range(256) if x != 11]
},
'0x000000000000000000000000000000000000000b': {
"balance": "0",
"nonce": "1",
"code": "0x3373fffffffffffffffffffffffffffffffffffffffe14604457602036146024575f5ffd5b620180005f350680545f35146037575f5ffd5b6201800001545f5260205ff35b42620180004206555f3562018000420662018000015500"
},
data['deposit_contract_address']: {
"balance": "0",
Expand Down

0 comments on commit 1a07d10

Please sign in to comment.