1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-11 23:22:50 +00:00
trezor-firmware/src/trezor/messages/Initialize.py

20 lines
423 B
Python

# Automatically generated by pb2py
# fmt: off
import protobuf as p
class Initialize(p.MessageType):
MESSAGE_WIRE_TYPE = 0
FIELDS = {
1: ('state', p.BytesType, 0),
2: ('skip_passphrase', p.BoolType, 0),
}
def __init__(
self,
state: bytes = None,
skip_passphrase: bool = None,
) -> None:
self.state = state
self.skip_passphrase = skip_passphrase