From 2193b19c1dfcb949856bc806b3932a874dc6779e Mon Sep 17 00:00:00 2001 From: Kevin Davis Date: Thu, 16 Jan 2020 16:17:16 +0100 Subject: [PATCH] fix: genesis auctions tag --- x/auction/types/genesis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/auction/types/genesis.go b/x/auction/types/genesis.go index 12eb5322..6180f21e 100644 --- a/x/auction/types/genesis.go +++ b/x/auction/types/genesis.go @@ -21,7 +21,7 @@ type GenesisAuctions []GenesisAuction type GenesisState struct { NextAuctionID uint64 `json:"next_auction_id" yaml:"next_auction_id"` Params Params `json:"params" yaml:"params"` - Auctions GenesisAuctions `json:"genesis_auctions" yaml:"genesis_auctions"` + Auctions GenesisAuctions `json:"auctions" yaml:"auctions"` } // NewGenesisState returns a new genesis state object for auctions module.