mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-27 01:48:17 +00:00
23 lines
488 B
Python
23 lines
488 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
|
||
|
class Initialize(p.MessageType):
|
||
|
MESSAGE_WIRE_TYPE = 0
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
state: bytes = None,
|
||
|
skip_passphrase: bool = None,
|
||
|
) -> None:
|
||
|
self.state = state
|
||
|
self.skip_passphrase = skip_passphrase
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('state', p.BytesType, 0),
|
||
|
2: ('skip_passphrase', p.BoolType, 0),
|
||
|
}
|