I am setting up a private ethereum testnet using geth. this is the genesis file.my question is when i create new accounts using personal.newAccount() command do i have to replace these addresses with the new ones ? and initialize the json file again?
i have already tried running this file and the mining starts but the account balance does not go up.
{
"config": {
"chainId": 1994,
"homesteadBlock": 0,
"eip155Block": 0,
"eip158Block": 0,
"byzantiumBlock": 0
},
"difficulty": "400",
"gasLimit": "2000000",
"alloc": {
"7b684d27167d208c66584ece7f09d8bc8f86ffff": {
"balance": "100000000000000000000000"
},
"ae13d41d66af28380c7af6d825ab557eb271ffff": {
"balance": "120000000000000000000000"
}
}
}
The mining thread gets killed and connection from geth java console times out.