@@ -227,8 +227,8 @@ impl Default for GenesisGeneratorConfig {
227227 network_id : "cipherbft-testnet-1" . to_string ( ) ,
228228 // 32 CPH = 32 * 10^18 wei = 0x1bc16d674ec80000
229229 initial_stake : U256 :: from ( 32_000_000_000_000_000_000u128 ) ,
230- // 100 CPH = 100 * 10^18 wei
231- initial_balance : U256 :: from ( 100_000_000_000_000_000_000u128 ) ,
230+ // 100,000 CPH = 100,000 * 10^18 wei
231+ initial_balance : U256 :: from ( 100_000_000_000_000_000_000_000u128 ) ,
232232 gas_limit : U256 :: from ( 30_000_000u64 ) ,
233233 extra_alloc : Vec :: new ( ) ,
234234 }
@@ -497,7 +497,7 @@ impl GenesisGenerator {
497497 /// 85300,
498498 /// "cipherbft-testnet-1",
499499 /// 32_000_000_000_000_000_000u128.into(), // 32 CPH
500- /// 100_000_000_000_000_000_000u128 .into(), // 100 CPH
500+ /// 100_000_000_000_000_000_000_000u128 .into(), // 100,000 CPH
501501 /// )?;
502502 /// ```
503503 pub fn generate_from_validator_keys (
@@ -1001,10 +1001,10 @@ mod tests {
10011001 config. initial_stake,
10021002 U256 :: from( 32_000_000_000_000_000_000u128 )
10031003 ) ;
1004- // 100 CPH in wei
1004+ // 100,000 CPH in wei
10051005 assert_eq ! (
10061006 config. initial_balance,
1007- U256 :: from( 100_000_000_000_000_000_000u128 )
1007+ U256 :: from( 100_000_000_000_000_000_000_000u128 )
10081008 ) ;
10091009 // 30M gas
10101010 assert_eq ! ( config. gas_limit, U256 :: from( 30_000_000u64 ) ) ;
0 commit comments