mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
16 lines
313 B
Python
16 lines
313 B
Python
# Automatically generated by pb2py
|
|
from .. import protobuf as p
|
|
|
|
|
|
class EthereumAddress(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 57
|
|
FIELDS = {
|
|
1: ('address', p.BytesType, 0), # required
|
|
}
|
|
|
|
def __init__(
|
|
self,
|
|
address: bytes = None
|
|
) -> None:
|
|
self.address = address
|