diff --git a/x/uibc/genesis.go b/x/uibc/genesis.go index a39d655d2f..d5e544e094 100644 --- a/x/uibc/genesis.go +++ b/x/uibc/genesis.go @@ -9,17 +9,17 @@ import ( func NewGenesisState(params Params, outflows sdk.DecCoins, outflowSum sdk.Dec) *GenesisState { return &GenesisState{ - Params: params, - Outflows: outflows, + Params: params, + Outflows: outflows, OutflowSum: outflowSum, } } func DefaultGenesisState() *GenesisState { return &GenesisState{ - Params: DefaultParams(), - Inflows: nil, - Outflows: nil, + Params: DefaultParams(), + Inflows: nil, + Outflows: nil, OutflowSum: sdk.NewDec(0), InflowSum: sdk.NewDec(0), } diff --git a/x/uibc/quota/keeper/genesis.go b/x/uibc/quota/keeper/genesis.go index 1274060fda..52740f5756 100644 --- a/x/uibc/quota/keeper/genesis.go +++ b/x/uibc/quota/keeper/genesis.go @@ -33,11 +33,11 @@ func (kb Builder) ExportGenesis(ctx sdk.Context) *uibc.GenesisState { util.Panic(err) return &uibc.GenesisState{ - Params: k.GetParams(), - Outflows: outflows, - OutflowSum: k.GetTotalOutflow(), - QuotaExpires: *quotaExpires, - Inflows: inflows, - InflowSum: k.GetTotalInflow(), + Params: k.GetParams(), + Outflows: outflows, + OutflowSum: k.GetTotalOutflow(), + QuotaExpires: *quotaExpires, + Inflows: inflows, + InflowSum: k.GetTotalInflow(), } }