Skip to content

Commit

Permalink
fix(fw): State test type-4 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz authored and spencer-tb committed Jul 23, 2024
1 parent e19437d commit 9acc99f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ethereum_test_fixtures/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ class FixtureAuthorizationTuple(AuthorizationTupleGeneric[ZeroPaddedHexNumber]):
Authorization tuple for fixture transactions.
"""

signer: Address | None = None

@classmethod
def from_authorization_tuple(
cls, auth_tuple: AuthorizationTupleGeneric
Expand All @@ -58,7 +60,7 @@ class FixtureTransaction(TransactionFixtureConverter):
value: List[ZeroPaddedHexNumber]
data: List[Bytes]
access_lists: List[List[AccessList]] | None = None
authorization_tuples: List[FixtureAuthorizationTuple] | None = None
authorization_list: List[FixtureAuthorizationTuple] | None = None
max_fee_per_blob_gas: ZeroPaddedHexNumber | None = None
blob_versioned_hashes: Sequence[Hash] | None = None
sender: Address | None = None
Expand Down

0 comments on commit 9acc99f

Please sign in to comment.