From 2a9d497827ef553f05b270b43d49181658b8418f Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Thu, 24 Jul 2025 11:40:33 +0300 Subject: [PATCH] Update the initial balance --- crates/node/src/constants.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/node/src/constants.rs b/crates/node/src/constants.rs index 25b5976..5b02dca 100644 --- a/crates/node/src/constants.rs +++ b/crates/node/src/constants.rs @@ -1,5 +1,5 @@ /// This constant defines how much Wei accounts are pre-seeded with in genesis. /// -/// We use [`u128::MAX`] here which means that accounts will be given 2^128 - 1 WEI which is -/// (2^128 - 1) / 10^18 ETH. -pub const INITIAL_BALANCE: u128 = u128::MAX; +/// Note: After changing this number, check that the tests for kitchensink work as we encountered +/// some issues with different values of the initial balance on Kitchensink. +pub const INITIAL_BALANCE: u128 = 10u128.pow(37);