Skip to content

Commit

Permalink
fix genesis
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zaremba committed Jul 26, 2023
1 parent ac4c881 commit 3cbf87e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions x/ugov/genesis.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
package ugov

import (
"time"

"github.com/umee-network/umee/v5/util/coin"
)

// DefaultGenesis creates a default genesis state
func DefaultGenesis() *GenesisState {
return &GenesisState{
MinGasPrice: coin.UmeeDec("0.1"),
InflationParams: DefaultInflationParams(),
MinGasPrice: coin.UmeeDec("0.1"),
InflationParams: DefaultInflationParams(),
InflationCycleEnd: time.Unix(1, 0),
}
}

Expand Down

0 comments on commit 3cbf87e

Please sign in to comment.