Skip to content

Commit

Permalink
Merge pull request #810 from HaoyangLiu/develop-stake
Browse files Browse the repository at this point in the history
Fix stake query bugs and upgrade tendermint to 0.27.0
  • Loading branch information
HaoyangLiu authored Dec 11, 2018
2 parents 1c5af82 + 06ed77c commit 499da01
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 58 deletions.
6 changes: 3 additions & 3 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
[[override]]
name = "github.com/tendermint/tendermint"
source = "https://github.com/irisnet/tendermint.git"
branch = "irisnet/v0.27.0-dev1-iris"
branch = "irisnet/v0.27.0-iris"

[[constraint]]
name = "github.com/emicklei/proto"
Expand Down
3 changes: 2 additions & 1 deletion app/v0/protocol_v0.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ func (p *ProtocolVersion0) configRouters() {
AddRoute("service", service.NewHandler(p.serviceKeeper)).
AddRoute("guardian", guardian.NewHandler(p.guardianKeeper))
p.queryRouter.
AddRoute("gov", gov.NewQuerier(p.govKeeper))
AddRoute("gov", gov.NewQuerier(p.govKeeper)).
AddRoute("stake", stake.NewQuerier(p.StakeKeeper, p.cdc))
}

// configure all Stores
Expand Down
53 changes: 0 additions & 53 deletions modules/mock/baseapp/replay.go

This file was deleted.

0 comments on commit 499da01

Please sign in to comment.