Skip to content

Commit 8b0f4c3

Browse files
committed
Update CHANGELOG with London changes overview + small README fix
1 parent 44a8bec commit 8b0f4c3

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

CHANGELOG

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
1-
Unreleased
1+
v0.6.0-beta.1
22
-------------
33

4+
Unreleased
5+
6+
- Features
7+
8+
- London support (https://github.com/ethereum/eth-tester/pull/206)
9+
- Upgrade py-evm to v0.5.0-alpha.1 for London support
10+
- Default to London
11+
- Support access list transactions and dynamic fee transactions
12+
- Transaction param support for `access_list`, `type`, `max_fee_per_gas`, `max_priority_fee_per_gas`
13+
- Transaction receipt param support for `type` and `effective_gas_price`
14+
- Block param support for `base_fee_per_gas`
15+
416
- Misc
517

618
- Adjust wording in README regarding genesis parameters
719

820
v0.5.0-beta.4
921
-------------
22+
1023
Released 2021-04-12
1124

1225
- Features
1326

14-
- Upgrade py-evm to v0.4.0-alpha.4 for Python 3.9 support
15-
https://github.com/ethereum/eth-tester/pull/205
27+
- Upgrade py-evm to v0.4.0-alpha.4 for Python 3.9 support
28+
https://github.com/ethereum/eth-tester/pull/205
1629
- Upgrade py-evm to v0.4.0-alpha.3, for Berlin support
1730
Default to Berlin
1831
https://github.com/ethereum/eth-tester/pull/204

README.md

-6
Original file line numberDiff line numberDiff line change
@@ -828,20 +828,15 @@ when initializing a backend. Only default values can be overridden or a `ValueE
828828
# Default Genesis Parameters
829829
830830
default_genesis_params = {
831-
"bloom": 0,
832831
"coinbase": GENESIS_COINBASE,
833832
"difficulty": GENESIS_DIFFICULTY,
834833
"extra_data": GENESIS_EXTRA_DATA,
835834
"gas_limit": GENESIS_GAS_LIMIT,
836-
"gas_used": 0,
837835
"mix_hash": GENESIS_MIX_HASH,
838836
"nonce": GENESIS_NONCE,
839-
"block_number": GENESIS_BLOCK_NUMBER,
840-
"parent_hash": GENESIS_PARENT_HASH,
841837
"receipt_root": BLANK_ROOT_HASH,
842838
"timestamp": int(time.time()),
843839
"transaction_root": BLANK_ROOT_HASH,
844-
"uncles_hash": EMPTY_RLP_LIST_HASH
845840
}
846841
```
847842

@@ -866,7 +861,6 @@ to `PyEVM.generate_genesis_params`.
866861
# "receipt_root": BLANK_ROOT_HASH,
867862
# "timestamp": int(time.time()),
868863
# "transaction_root": BLANK_ROOT_HASH,
869-
# "base_fee_per_gas": 1000000000,
870864
# }
871865
```
872866

0 commit comments

Comments
 (0)