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 bf22d43 commit c426819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mine-your-first-block/src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub fn process_mempool(mempool_path: &str) -> io::Result<Vec<TransactionForProce
}

// Remove dust transactions
let min_relay_fee_per_byte: u64 = 5; // 3 satoshis per byte could go up or down 1-5
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
Expand Down

0 comments on commit c426819

Please sign in to comment.