Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Reflect changes to max transaction size in #2686.
  • Loading branch information
ralexstokes committed Oct 31, 2021
1 parent 6d1be4a commit 43da796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -543,7 +543,7 @@ def get_payload(self: ExecutionEngine, payload_id: PayloadId) -> ExecutionPayloa
@classmethod
def hardcoded_custom_type_dep_constants(cls) -> str:
constants = {
'MAX_BYTES_PER_TRANSACTION': 'uint64(2**20)',
'MAX_BYTES_PER_TRANSACTION': 'uint64(2**30)',
}
return {**super().hardcoded_custom_type_dep_constants(), **constants}

Expand Down

0 comments on commit 43da796

Please sign in to comment.