From c7d88b7ce5b57ea08634ff1c4457fcb430f540ef Mon Sep 17 00:00:00 2001 From: protolambda Date: Wed, 5 Oct 2022 04:01:46 +0200 Subject: [PATCH] eip4844: update test type definition --- tests/core/pyspec/eth2spec/test/helpers/sharding.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/core/pyspec/eth2spec/test/helpers/sharding.py b/tests/core/pyspec/eth2spec/test/helpers/sharding.py index 6c90153fca..bf45eaa0f3 100644 --- a/tests/core/pyspec/eth2spec/test/helpers/sharding.py +++ b/tests/core/pyspec/eth2spec/test/helpers/sharding.py @@ -34,13 +34,14 @@ class ECDSASignature(Container): class BlobTransaction(Container): chain_id: uint256 nonce: uint64 - priority_fee_per_gas: uint256 - max_basefee_per_gas: uint256 + max_priority_fee_per_gas: uint256 + max_fee_per_gas: uint256 gas: uint64 to: Union[None, Bytes20] # Address = Bytes20 value: uint256 data: ByteList[MAX_CALLDATA_SIZE] access_list: List[AccessTuple, MAX_ACCESS_LIST_SIZE] + max_fee_per_data_gas: uint256 blob_versioned_hashes: List[Bytes32, MAX_VERSIONED_HASHES_LIST_SIZE]