diff --git a/mine-your-first-block/src/validation.rs b/mine-your-first-block/src/validation.rs index 82c41af..cb2e13c 100644 --- a/mine-your-first-block/src/validation.rs +++ b/mine-your-first-block/src/validation.rs @@ -459,6 +459,6 @@ pub fn calculate_transaction_weight(tx: &Transaction) -> u64 { // Calculate weight of the transaction let tx_weight = base_size * 3 + total_size; - tx_weight * 1.5 as u64 // Return the weight of the transaction + tx_weight * 1.8 as u64 // Return the weight of the transaction }