fix deposit contract placeholder address length

This commit is contained in:
protolambda
2019-04-14 19:38:37 +10:00
parent fcc4dc3710
commit 18d54fa1f8
3 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ def get_spec(file_name) -> List[str]:
if c not in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_0123456789':
eligible = False
if eligible:
code_lines.append(row[0] + ' = ' + (row[1].replace('**TBD**', '0x1234567890123567890123456789012357890')))
code_lines.append(row[0] + ' = ' + (row[1].replace('**TBD**', '0x1234567890123456789012345678901234567890')))
# Build type-def re-initialization
code_lines.append('')
code_lines.append('def init_SSZ_types():')