Skip to content

Commit

Permalink
check duplicate tx before double input spend.
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Stacks committed Nov 25, 2024
1 parent d52ce44 commit df48bf4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ impl BlockBodyProcessor {
storage_mass_activated,
Arc::new(self.mass_calculator.clone()),
);
Self::check_input_double_spends(bbvc)?;
Self::check_duplicate_transactions(bbvc, block)?;
Self::check_input_double_spends(bbvc)?;
Self::check_transactions_full(self, bbvc, block)?;
Self::check_block_mass(bbvc, block)?;
Ok(bbvc.total_calculated_mass)
Expand Down

0 comments on commit df48bf4

Please sign in to comment.