1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-21 05:48:23 +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, CardanoGetAddress,
CardanoGetPublicKey, CardanoGetPublicKey,
CardanoSignMessage, CardanoSignMessage,
CardanoSignTransaction, CardanoSignTx,
CardanoVerifyMessage, CardanoVerifyMessage,
) )
from trezor.wire import protobuf_workflow, register from trezor.wire import protobuf_workflow, register
@ -43,4 +43,4 @@ def boot():
register(CardanoGetPublicKey, protobuf_workflow, dispatch_CardanoGetPublicKey) register(CardanoGetPublicKey, protobuf_workflow, dispatch_CardanoGetPublicKey)
register(CardanoSignMessage, protobuf_workflow, dispatch_CardanoSignMessage) register(CardanoSignMessage, protobuf_workflow, dispatch_CardanoSignMessage)
register(CardanoVerifyMessage, protobuf_workflow, dispatch_CardanoVerifyMessage) register(CardanoVerifyMessage, protobuf_workflow, dispatch_CardanoVerifyMessage)
register(CardanoSignTransaction, protobuf_workflow, dispatch_CardanoSignTransaction) register(CardanoSignTx, protobuf_workflow, dispatch_CardanoSignTransaction)