From 67ed44c007535baf0c07457a1f99ddff6eabe6e5 Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Tue, 13 Oct 2020 18:11:52 -0600 Subject: [PATCH] Add log_messages to proto file (#12859) --- storage-bigtable/proto/solana.bigtable.confirmed_block.rs | 4 ++-- storage-bigtable/src/confirmed_block.proto | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/storage-bigtable/proto/solana.bigtable.confirmed_block.rs b/storage-bigtable/proto/solana.bigtable.confirmed_block.rs index ea9636c41..c44348602 100644 --- a/storage-bigtable/proto/solana.bigtable.confirmed_block.rs +++ b/storage-bigtable/proto/solana.bigtable.confirmed_block.rs @@ -59,8 +59,8 @@ pub struct TransactionStatusMeta { pub post_balances: ::std::vec::Vec, #[prost(message, repeated, tag = "5")] pub inner_instructions: ::std::vec::Vec, - #[prost(message, repeated, tag = "6")] - pub log_messages: ::std::vec::Vec, + #[prost(string, repeated, tag = "6")] + pub log_messages: ::std::vec::Vec, } #[derive(Clone, PartialEq, ::prost::Message)] pub struct TransactionError { diff --git a/storage-bigtable/src/confirmed_block.proto b/storage-bigtable/src/confirmed_block.proto index 483d5d0cd..2765c43d6 100644 --- a/storage-bigtable/src/confirmed_block.proto +++ b/storage-bigtable/src/confirmed_block.proto @@ -40,6 +40,7 @@ message TransactionStatusMeta { repeated uint64 pre_balances = 3; repeated uint64 post_balances = 4; repeated InnerInstructions inner_instructions = 5; + repeated string log_messages = 6; } message TransactionError {