From f65af8746736276e1d3ff0151908e0ea2d6ad013 Mon Sep 17 00:00:00 2001 From: Vladimir Ivanov Date: Mon, 10 Mar 2025 17:09:40 +0400 Subject: [PATCH] [GH-#][execution] Increase default balance for default faucets. --- nil/internal/execution/zerostate.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nil/internal/execution/zerostate.go b/nil/internal/execution/zerostate.go index 064e45516..9842a5fb1 100644 --- a/nil/internal/execution/zerostate.go +++ b/nil/internal/execution/zerostate.go @@ -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 }