Skip to content

Commit

Permalink
resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
yuunlimm committed Sep 18, 2024
1 parent b01107b commit 5ea8cb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl Transaction {
.collect();

for processed_txn in processed_txns {
let (block_metadata, mut wsc_detail_list) = processed_txns;
let (block_metadata, mut wsc_detail_list) = processed_txn;
if let Some(a) = block_metadata {
block_metadata_txns.push(a);
}
Expand Down
6 changes: 1 addition & 5 deletions rust/processor/src/processors/default_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,11 +274,7 @@ fn process_transactions(
flags: TableFlags,
) -> (
Vec<BlockMetadataTransaction>,
(
Vec<TableItem>,
Vec<CurrentTableItem>,
Vec<TableMetadata>,
),
(Vec<TableItem>, Vec<CurrentTableItem>, Vec<TableMetadata>),
) {
let (block_metadata_txns, wsc_details) = TransactionModel::from_transactions(&transactions);
let mut block_metadata_transactions = vec![];
Expand Down

0 comments on commit 5ea8cb6

Please sign in to comment.