1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-24 23:38:09 +00:00

pb2py - add support for INT64

This commit is contained in:
ZuluCrypto 2018-04-03 19:47:54 -06:00
parent e435175d79
commit b03d93c182
No known key found for this signature in database
GPG Key ID: 0D1266F87C28A2E1

View File

@ -68,6 +68,7 @@ def process_message(descriptor, protobuf_module, msg_id, indexfile, is_upy):
types = {
field.TYPE_UINT64: 'p.UVarintType',
field.TYPE_INT64: 'p.UVarintType',
field.TYPE_UINT32: 'p.UVarintType',
field.TYPE_ENUM: 'p.UVarintType',
field.TYPE_SINT32: 'p.Sint32Type',