Merge pull request #2701 from ethereum/ralexstokes-patch-1

Update max transaction size in setup.py
This commit is contained in:
Danny Ryan 2021-10-31 09:08:04 -06:00 committed by GitHub
commit 7f35777890
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -543,7 +543,7 @@ EXECUTION_ENGINE = NoopExecutionEngine()"""
@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}