From 329845f83d5dacff27bd993439275ef4ef90486a Mon Sep 17 00:00:00 2001 From: piux2 <90544084+piux2@users.noreply.github.com> Date: Thu, 19 Dec 2024 14:17:01 -0800 Subject: [PATCH] fix: Update init gas price (#3383) The number is too large due to the increased gas configurations. This change will reduce the cost from 1 gnot to 0.01 gnot for a transaction that uses 10 million gas. --- gno.land/pkg/gnoland/genesis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gno.land/pkg/gnoland/genesis.go b/gno.land/pkg/gnoland/genesis.go index ccc3369766d..d7844d77b57 100644 --- a/gno.land/pkg/gnoland/genesis.go +++ b/gno.land/pkg/gnoland/genesis.go @@ -17,7 +17,7 @@ import ( "github.com/pelletier/go-toml" ) -const initGasPrice = "10ugnot/100gas" +const initGasPrice = "1ugnot/1000gas" // LoadGenesisBalancesFile loads genesis balances from the provided file path. func LoadGenesisBalancesFile(path string) ([]Balance, error) {