Merge pull request #579 from tendermint/feature/sync_status

Add fast-sync status to Status() call
This commit is contained in:
Ethan Buchman
2017-08-09 23:51:25 -04:00
committed by GitHub
5 changed files with 36 additions and 13 deletions

View File

@ -319,6 +319,7 @@ func (n *Node) ConfigureRPC() {
rpccore.SetAddrBook(n.addrBook)
rpccore.SetProxyAppQuery(n.proxyApp.Query())
rpccore.SetTxIndexer(n.txIndexer)
rpccore.SetConsensusReactor(n.consensusReactor)
rpccore.SetLogger(n.Logger.With("module", "rpc"))
}