Skip to content

Commit 1e350f2

Browse files
committed
rebased on main
1 parent 594c104 commit 1e350f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ethereum_test_types/transaction_types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ def proofs(self) -> Sequence[Bytes] | None:
697697

698698
# original cell proofs with length 4098
699699
# error: InvalidBlobDataSize: Blob data fields are of incorrect size.
700-
# -> i think its cuz each cell_proof has length 4098, but for some reason it wants length 98 (but ofc if we just shorten it it will expect a different proof)
700+
# -> i think its cuz each cell_proof has length 4098, but for some reason it wants length 98 (but ofc if we just shorten it it will expect a different proof) # noqa: E501
701701
@computed_field # type: ignore[prop-decorator]
702702
@property
703703
def cell_proofs(self) -> Sequence[Bytes] | None:
@@ -771,7 +771,7 @@ def get_rlp_fields(self) -> List[str]:
771771
"blobs", # Blob.data, in geth: Blobs
772772
"commitments", # in geth: Commitments
773773
*rlp_proofs, # only included < osaka, in geth: Proofs
774-
*rlp_cell_proofs, # only included >=osaka, in geth this does not exist(always uses Proofs)
774+
*rlp_cell_proofs, # only included >=osaka, in geth this does not exist(always uses Proofs) # noqa: E501
775775
]
776776

777777
assert ("proofs" in rlp_fields) or ("cell_proofs" in rlp_fields), (

0 commit comments

Comments
 (0)