Skip to content

Commit

Permalink
fix ephemery genesis
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Jan 15, 2025
1 parent 6b49962 commit 94fefb6
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 @@ -108,7 +108,7 @@
},
"coinbase": "0x0000000000000000000000000000000000000000",
"baseFeePerGas": "0x3B9ACA00",
"difficulty": "0x0",
"difficulty": "0x01",
"extraData": "",
"gasLimit": hex(int(data['genesis_gaslimit'] if 'genesis_gaslimit' in data and data['genesis_gaslimit'] is not None else 25000000)),
"nonce": "0x1234",
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 @@ -84,7 +84,7 @@
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
},
"difficulty": "0x0",
"difficulty": "0x01",
"author": "0x0000000000000000000000000000000000000000",
"timestamp": hex(data['genesis_timestamp']),
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
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 @@ -106,7 +106,7 @@
}
},
"coinbase": "0x0000000000000000000000000000000000000000",
"difficulty": "0x0",
"difficulty": "0x01",
"extraData": "",
"gasLimit": hex(int(data['genesis_gaslimit'] if 'genesis_gaslimit' in data and data['genesis_gaslimit'] is not None else 25000000)),
"nonce": "0x1234",
Expand Down

0 comments on commit 94fefb6

Please sign in to comment.