mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-09 22:44:27 +00:00
change in params for swap wallet)
This commit is contained in:
parent
f4bdcb1238
commit
f1a9ceae54
1 changed files with 3 additions and 3 deletions
|
|
@ -312,10 +312,10 @@ func (w *wizard) makeGenesis() {
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
fmt.Println("What is swap wallet address for fund 55m XDC?")
|
fmt.Println("What is swap wallet address for fund 37.5Billion XDC?")
|
||||||
swapAddr := *w.readAddress()
|
swapAddr := *w.readAddress()
|
||||||
baseBalance := big.NewInt(0) // 55m
|
baseBalance := big.NewInt(0) // 37.5Billion
|
||||||
baseBalance.Add(baseBalance, big.NewInt(55*1000*1000))
|
baseBalance.Add(baseBalance, big.NewInt(375*1000*1000*100))
|
||||||
baseBalance.Mul(baseBalance, big.NewInt(1000000000000000000))
|
baseBalance.Mul(baseBalance, big.NewInt(1000000000000000000))
|
||||||
genesis.Alloc[swapAddr] = core.GenesisAccount{
|
genesis.Alloc[swapAddr] = core.GenesisAccount{
|
||||||
Balance: baseBalance,
|
Balance: baseBalance,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue