Skip to content

Commit 329845f

Browse files
authored
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.
1 parent b9aedb1 commit 329845f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gno.land/pkg/gnoland/genesis.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/pelletier/go-toml"
1818
)
1919

20-
const initGasPrice = "10ugnot/100gas"
20+
const initGasPrice = "1ugnot/1000gas"
2121

2222
// LoadGenesisBalancesFile loads genesis balances from the provided file path.
2323
func LoadGenesisBalancesFile(path string) ([]Balance, error) {

0 commit comments

Comments
 (0)