Skip to content

Commit

Permalink
[GH-#][execution] Increase default balance for default faucets.
Browse files Browse the repository at this point in the history
  • Loading branch information
Un1oR committed Mar 10, 2025
1 parent 17a4b72 commit f65af87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nil/internal/execution/zerostate.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ type ZeroStateConfig struct {
}

func CreateDefaultZeroStateConfig(mainPublicKey []byte) (*ZeroStateConfig, error) {
smartAccountValue, err := types.NewValueFromDecimal("10000000000000000000000000000")
smartAccountValue, err := types.NewValueFromDecimal("100000000000000000000000000000000000000000000000000")
if err != nil {
return nil, err
}
faucetValue := smartAccountValue.Mul(types.NewValueFromUint64(uint64(2)))
tokenValue, err := types.NewValueFromDecimal("100000000000000000000")
tokenValue, err := types.NewValueFromDecimal("100000000000000000000000000000000000000000000000000")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit f65af87

Please sign in to comment.