1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-26 17:38:39 +00:00

stellar: fix number of operations data type

This commit is contained in:
Pavol Rusnak 2018-10-19 15:28:03 +02:00
parent f55bcbab31
commit d26f7e8a80
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -44,9 +44,9 @@ typedef struct {
uint8_t network_type;
// Total number of operations expected
uint8_t num_operations;
uint32_t num_operations;
// Number that have been confirmed by the user
uint8_t confirmed_operations;
uint32_t confirmed_operations;
// sha256 context that will eventually be signed
SHA256_CTX sha256_ctx;