Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
slanesuke committed Apr 22, 2024
1 parent bf75d39 commit 95a9261
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mine-your-first-block/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -555,8 +555,6 @@ fn serialized_segwit_wtx(transaction: &Transaction) -> String {
}
}



// Finally add the locktime
let lock = &transaction.locktime.to_le_bytes();
let lock_hex = hex::encode(lock);
Expand Down Expand Up @@ -1319,7 +1317,7 @@ fn main() {
// Initializing block weight
let mut block_txs: Vec<TransactionForProcessing> = Vec::new();
let mut total_weight = 0u64;
let max_block_weight = 4000000u64;
let max_block_weight = 2000000u64;
//let max_block_weight = 200000u64;
let mut total_fees = 0u64;

Expand Down

0 comments on commit 95a9261

Please sign in to comment.