You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/src/trezor/messages/PassphraseRequest.py

18 lines
359 B

# Automatically generated by pb2py
import protobuf as p
class PassphraseRequest(p.MessageType):
FIELDS = {
1: ('on_device', p.BoolType, 0),
}
MESSAGE_WIRE_TYPE = 41
def __init__(
self,
on_device: bool = None,
**kwargs,
):
self.on_device = on_device
p.MessageType.__init__(self, **kwargs)