1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-19 04:48:12 +00:00

cardano: message renamed

This commit is contained in:
Tomas Susanka 2018-08-21 14:24:07 +02:00
parent 0323355299
commit db71e919b7

View File

@ -2,7 +2,7 @@ from trezor.messages.MessageType import (
CardanoGetAddress,
CardanoGetPublicKey,
CardanoSignMessage,
CardanoSignTransaction,
CardanoSignTx,
CardanoVerifyMessage,
)
from trezor.wire import protobuf_workflow, register
@ -43,4 +43,4 @@ def boot():
register(CardanoGetPublicKey, protobuf_workflow, dispatch_CardanoGetPublicKey)
register(CardanoSignMessage, protobuf_workflow, dispatch_CardanoSignMessage)
register(CardanoVerifyMessage, protobuf_workflow, dispatch_CardanoVerifyMessage)
register(CardanoSignTransaction, protobuf_workflow, dispatch_CardanoSignTransaction)
register(CardanoSignTx, protobuf_workflow, dispatch_CardanoSignTransaction)