You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,7 @@ Users can select any of the artifacts depending on their testing needs for their
66
66
- ✨ Added automatic checklist generation for every EIP inside of the `tests` folder. The checklist is appended to each EIP in the documentation in the "Test Case Reference" section ([#1679](https://github.com/ethereum/execution-spec-tests/pull/1679), [#1718](https://github.com/ethereum/execution-spec-tests/pull/1718)).
67
67
- 🔀 Add macOS hive development mode workaround to the docs [#1786](https://github.com/ethereum/execution-spec-tests/pull/1786).
68
68
- 🔀 Refactor and clean up of exceptions including EOF exceptions within client specific mappers [#1803](https://github.com/ethereum/execution-spec-tests/pull/1803).
69
+
- ✨ Improved RLP logging in rpc.py. Errors shown in console are shortened and full RLP data is logged to file if an exception occurs ([#1614](https://github.com/ethereum/execution-spec-tests/pull/1614)).
# 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)
"""Return a list of cells (returns None < Osaka)."""
705
700
ifself.wrapper_versionisNone:
706
701
returnNone
707
702
708
-
cells: list[list[Bytes]] = []
703
+
cells: list[Bytes] = []
709
704
forblobinself.blob_objects:
710
705
assertisinstance(blob.proof, list)
711
-
cells.append(blob.proof)
712
-
713
-
# if you remove below you instead get error: Invalid RLP. (which means getting what we have to work NWT that hold many blobs will be even more work) # noqa: E501
# osaka without wrapper: too few elements for types.blobTxWithBlobs
817
-
# osaka with wrapper: it tries to deserialize into blobTxWithBlobs instead of versionedBlobTxWithBlobs, so it complains about unexpectedly seeing wrapper instead of blob data # noqa: E501
818
-
819
-
# NETHERMIND PROBLEM:
820
-
# osaka without wrapper: code=-32602, message=Specified argument was out of the range of valid values.
821
-
# osaka with wrapper: code=-32602, message=Specified argument was out of the range of valid values
822
-
823
768
defget_rlp_prefix(self) ->bytes:
824
769
"""
825
770
Return the transaction type as bytes to be appended at the beginning of the
0 commit comments