Add RegisterQueryService to AppModule (#6336)

* Add RegisterQueryService to AppModule

* Update CHANGELOG.md

* Update CHANGELOG.md

* Wire up BaseApp, fix tests

* Add mock test

* add missing file

* Update types/module/module.go

* Update CHANGELOG.md

Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Aaron Craelius
2020-06-06 07:59:57 +00:00
committed by GitHub
co-authored by Alexander Bezobchuk mergify[bot]
parent 7eeb086d3a
commit 43947ca2ef
21 changed files with 154 additions and 4 deletions
+4
View File
@@ -4,6 +4,8 @@ import (
"encoding/json"
"math/rand"
"github.com/gogo/protobuf/grpc"
"github.com/gorilla/mux"
"github.com/spf13/cobra"
abci "github.com/tendermint/tendermint/abci/types"
@@ -97,6 +99,8 @@ func (am AppModule) NewQuerierHandler() sdk.Querier {
return NewQuerier(am.keeper)
}
func (am AppModule) RegisterQueryService(grpc.Server) {}
// ProposalContents returns all the params content functions used to
// simulate governance proposals.
func (am AppModule) ProposalContents(simState module.SimulationState) []simtypes.WeightedProposalContent {