Skip to content

Commit

Permalink
Merge pull request #332 from ava-labs/fix-add-primary-validator-weight
Browse files Browse the repository at this point in the history
fix weight for adding primary validators
  • Loading branch information
felipemadero authored Nov 2, 2022
2 parents 47b2c53 + a7c8507 commit c9db9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion local/blockchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ func (ln *localNetwork) addPrimaryValidators(
NodeID: nodeID,
Start: uint64(time.Now().Add(validationStartOffset).Unix()),
End: uint64(time.Now().Add(validationDuration).Unix()),
Wght: 1 * units.Avax,
Wght: genesis.LocalParams.MinValidatorStake,
},
&secp256k1fx.OutputOwners{
Threshold: 1,
Expand Down

0 comments on commit c9db9fe

Please sign in to comment.