s/*EventDataRoundState/EventDataRoundState/g

This commit is contained in:
Jae Kwon
2016-01-28 19:44:44 -08:00
parent 26d64208d1
commit 8a3bba48e3
3 changed files with 17 additions and 17 deletions

View File

@ -235,7 +235,7 @@ func (conR *ConsensusReactor) SetEventSwitch(evsw *events.EventSwitch) {
func (conR *ConsensusReactor) registerEventCallbacks() {
conR.evsw.AddListenerForEvent("conR", types.EventStringNewRoundStep(), func(data events.EventData) {
rs := data.(*types.EventDataRoundState).RoundState.(*RoundState)
rs := data.(types.EventDataRoundState).RoundState.(*RoundState)
conR.broadcastNewRoundStep(rs)
})