File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -448,7 +448,7 @@ def find_constructor_abi_element_by_type(contract_abi: ABI) -> ABIConstructor:
448
448
BYTES_SIZES = range (1 , 33 )
449
449
UINT_TYPES = [f"uint{ i } " for i in INT_SIZES ]
450
450
INT_TYPES = [f"int{ i } " for i in INT_SIZES ]
451
- BYTES_TYPES = [f"bytes{ i } " for i in BYTES_SIZES ] + ["bytes32" ]
451
+ BYTES_TYPES = [f"bytes{ i } " for i in BYTES_SIZES ] + ["bytes32.byte " ]
452
452
453
453
STATIC_TYPES = list (
454
454
itertools .chain (
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ def sort_batch_response_by_response_ids(
201
201
responses : List ["RPCResponse" ],
202
202
) -> List ["RPCResponse" ]:
203
203
if all (response .get ("id" ) is not None for response in responses ):
204
- # If all responses have an `id`, sort them by `id, since the JSON-RPC 2.0 spec
204
+ # If all responses have an `id`, sort them by `id` , since the JSON-RPC 2.0 spec
205
205
# doesn't guarantee order.
206
206
return sorted (responses , key = lambda response : response ["id" ])
207
207
else :
You can’t perform that action at this time.
0 commit comments