mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 02:40:45 +00:00
Params changed | increased validatorCap
This commit is contained in:
parent
d4be1fd766
commit
117f02b3b6
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ func NewValidator(transactOpts *bind.TransactOpts, contractAddr common.Address,
|
||||||
|
|
||||||
func DeployValidator(transactOpts *bind.TransactOpts, contractBackend bind.ContractBackend, validatorAddress []common.Address, caps []*big.Int, ownerAddress common.Address) (common.Address, *Validator, error) {
|
func DeployValidator(transactOpts *bind.TransactOpts, contractBackend bind.ContractBackend, validatorAddress []common.Address, caps []*big.Int, ownerAddress common.Address) (common.Address, *Validator, error) {
|
||||||
minDeposit := new(big.Int)
|
minDeposit := new(big.Int)
|
||||||
minDeposit.SetString("50000000000000000000000", 10)
|
minDeposit.SetString("10000000000000000000000000", 10)
|
||||||
minVoterCap := new(big.Int)
|
minVoterCap := new(big.Int)
|
||||||
minVoterCap.SetString("10000000000000000000", 10)
|
minVoterCap.SetString("10000000000000000000", 10)
|
||||||
// Deposit 50K XDC
|
// Deposit 50K XDC
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue