From 6bf372dd553d2a9d9743248e20395a0629b9db4a Mon Sep 17 00:00:00 2001 From: Ian Slane Date: Mon, 22 Apr 2024 15:00:31 -0600 Subject: [PATCH] test --- mine-your-first-block/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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