mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 01:18:28 +00:00
protob: Fix amount
and fee
Lisk fields string -> uint64
This commit is contained in:
parent
9e80d32b5f
commit
4fc9fdff7d
@ -476,8 +476,8 @@ enum LiskTransactionType {
|
||||
*/
|
||||
message LiskTransactionCommon {
|
||||
optional LiskTransactionType type = 1;
|
||||
optional string amount = 2 [default='0'];
|
||||
optional string fee = 3;
|
||||
optional uint64 amount = 2 [default=0];
|
||||
optional uint64 fee = 3;
|
||||
optional string recipient_id = 4;
|
||||
optional string sender_public_key = 5;
|
||||
optional string requester_public_key = 6;
|
||||
|
Loading…
Reference in New Issue
Block a user