mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-02 04:18:20 +00:00
22 lines
448 B
Python
22 lines
448 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
|
||
|
class MoneroRctKeyPublic(p.MessageType):
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
dest: bytes = None,
|
||
|
commitment: bytes = None,
|
||
|
) -> None:
|
||
|
self.dest = dest
|
||
|
self.commitment = commitment
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('dest', p.BytesType, 0),
|
||
|
2: ('commitment', p.BytesType, 0),
|
||
|
}
|