diff --git a/mine-your-first-block/src/main.rs b/mine-your-first-block/src/main.rs index e527efa..8fe02cc 100644 --- a/mine-your-first-block/src/main.rs +++ b/mine-your-first-block/src/main.rs @@ -1325,8 +1325,8 @@ fn main() { // Initializing block weight let mut block_txs: Vec = Vec::new(); let mut total_weight = 0u64; - //let max_block_weight = 4000000u64; - let max_block_weight = 200000u64; + let max_block_weight = 1000000u64; + //let max_block_weight = 200000u64; let mut total_fees = 0u64; // Sort transactions by fee in descending order before processing