mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
70172520fb
This drops sign/verify messages for Lisk and Stellar so we have to remove the corresponding methods.
19 lines
419 B
Python
19 lines
419 B
Python
# Automatically generated by pb2py
|
|
from .. 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
|