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 {