trezor: deprecated ByteSize -> ByteSizeLong

This commit is contained in:
selsta 2021-05-13 03:51:31 +02:00
parent b1873af519
commit da45d3f5b3
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ namespace trezor{
#define PROTO_HEADER_SIZE 6
static size_t message_size(const google::protobuf::Message &req){
return static_cast<size_t>(req.ByteSize());
return req.ByteSizeLong();
}
static size_t serialize_message_buffer_size(size_t msg_size) {