mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 23:48:12 +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):
|
||||
FIELDS = {
|
||||
0: ("uvarint", protobuf.UVarintType, 0),
|
||||
1: ("svarint", protobuf.SVarintType, 0),
|
||||
2: ("bool", protobuf.BoolType, 0),
|
||||
3: ("bytes", protobuf.BytesType, 0),
|
||||
4: ("unicode", protobuf.UnicodeType, 0),
|
||||
}
|
||||
@classmethod
|
||||
def get_fields(cls):
|
||||
return {
|
||||
0: ("uvarint", protobuf.UVarintType, 0),
|
||||
1: ("svarint", protobuf.SVarintType, 0),
|
||||
2: ("bool", protobuf.BoolType, 0),
|
||||
3: ("bytes", protobuf.BytesType, 0),
|
||||
4: ("unicode", protobuf.UnicodeType, 0),
|
||||
}
|
||||
|
||||
|
||||
def load_uvarint(buffer):
|
||||
|
Loading…
Reference in New Issue
Block a user