Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
slanesuke committed Apr 28, 2024
1 parent c426819 commit 0c389e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mine-your-first-block/src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ pub fn process_mempool(mempool_path: &str) -> io::Result<Vec<TransactionForProce
continue;
}

// Remove dust transactions
let min_relay_fee_per_byte: u64 = 1; // 3 satoshis per byte could go up or down 1-5
remove_dust_transactions(&mut transaction, min_relay_fee_per_byte);
// // Remove dust transactions
// let min_relay_fee_per_byte: u64 = 1; // 3 satoshis per byte could go up or down 1-5
// remove_dust_transactions(&mut transaction, min_relay_fee_per_byte);

// Check for double spending
if !check_double_spending(&transaction, &valid_txs) {
Expand Down

0 comments on commit 0c389e8

Please sign in to comment.