Skip to content

Commit

Permalink
refactor: more appropriate name for a list
Browse files Browse the repository at this point in the history
  • Loading branch information
catalyst17 committed Jan 18, 2024
1 parent b7c115b commit 0e4b199
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion proto/combined_data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ message CombinedData {
repeated OPRollup opRollups = 4;
repeated ZkEvmRollup zkEvmRollups = 5;

repeated OpBatchInboxCallData op_batch_inbox_call_data = 6;
repeated OpBatchInboxCallData list_of_op_batch_inbox_call_data = 6;
}
2 changes: 1 addition & 1 deletion src/map_combine_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fn map_combine_data(
nitro_rollups: nitro_rollups.rollups,
op_rollups: op_rollups.rollups,
zk_evm_rollups: zk_evm_rollups.rollups,
op_batch_inbox_call_data: list_of_calldata.data
list_of_op_batch_inbox_call_data: list_of_calldata.data
}
)
}
2 changes: 1 addition & 1 deletion src/pb/eth.blocktorch.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,6 @@ pub struct CombinedData {
#[prost(message, repeated, tag="5")]
pub zk_evm_rollups: ::prost::alloc::vec::Vec<ZkEvmRollup>,
#[prost(message, repeated, tag="6")]
pub op_batch_inbox_call_data: ::prost::alloc::vec::Vec<OpBatchInboxCallData>,
pub list_of_op_batch_inbox_call_data: ::prost::alloc::vec::Vec<OpBatchInboxCallData>,
}
// @@protoc_insertion_point(module)

0 comments on commit 0e4b199

Please sign in to comment.