mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
19 lines
420 B
Python
19 lines
420 B
Python
# Automatically generated by pb2py
|
|
from .. import protobuf as p
|
|
|
|
|
|
class EthereumMessageSignature(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 66
|
|
FIELDS = {
|
|
1: ('address', p.BytesType, 0),
|
|
2: ('signature', p.BytesType, 0),
|
|
}
|
|
|
|
def __init__(
|
|
self,
|
|
address: bytes = None,
|
|
signature: bytes = None
|
|
) -> None:
|
|
self.address = address
|
|
self.signature = signature
|