mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-23 07:58:09 +00:00
protob test fix after migration to get_fields()
This commit is contained in:
parent
6b32e33c58
commit
61de49fae5
@ -22,13 +22,15 @@ from trezorlib import protobuf
|
|||||||
|
|
||||||
|
|
||||||
class PrimitiveMessage(protobuf.MessageType):
|
class PrimitiveMessage(protobuf.MessageType):
|
||||||
FIELDS = {
|
@classmethod
|
||||||
0: ("uvarint", protobuf.UVarintType, 0),
|
def get_fields(cls):
|
||||||
1: ("svarint", protobuf.SVarintType, 0),
|
return {
|
||||||
2: ("bool", protobuf.BoolType, 0),
|
0: ("uvarint", protobuf.UVarintType, 0),
|
||||||
3: ("bytes", protobuf.BytesType, 0),
|
1: ("svarint", protobuf.SVarintType, 0),
|
||||||
4: ("unicode", protobuf.UnicodeType, 0),
|
2: ("bool", protobuf.BoolType, 0),
|
||||||
}
|
3: ("bytes", protobuf.BytesType, 0),
|
||||||
|
4: ("unicode", protobuf.UnicodeType, 0),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
def load_uvarint(buffer):
|
def load_uvarint(buffer):
|
||||||
|
Loading…
Reference in New Issue
Block a user