Skip to content

Commit

Permalink
fix: Update init gas price (#3383)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
piux2 authored Dec 19, 2024
1 parent b9aedb1 commit 329845f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gno.land/pkg/gnoland/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 329845f

Please sign in to comment.