1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-08 22:40:59 +00:00

cardano: SignTransaction -> SignTx to match other coins

This commit is contained in:
Tomas Susanka 2018-08-21 14:11:56 +02:00
parent debd6871d6
commit 13747474c1
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ message CardanoVerifyMessage {
* @next CardanoTxRequest
* @next Failure
*/
message CardanoSignTransaction {
message CardanoSignTx {
repeated CardanoTxInputType inputs = 1; // inputs to be used in transaction
repeated CardanoTxOutputType outputs = 2; // outputs to be used in transaction
optional uint32 transactions_count = 3; // transactions count

View File

@ -165,7 +165,7 @@ enum MessageType {
MessageType_CardanoSignMessage = 300 [(wire_in) = true];
MessageType_CardanoMessageSignature = 301 [(wire_out) = true];
MessageType_CardanoVerifyMessage = 302 [(wire_in) = true];
MessageType_CardanoSignTransaction = 303 [(wire_in) = true];
MessageType_CardanoSignTx = 303 [(wire_in) = true];
MessageType_CardanoTxRequest = 304 [(wire_out) = true];
MessageType_CardanoGetPublicKey = 305 [(wire_in) = true];
MessageType_CardanoPublicKey = 306 [(wire_out) = true];