remove events we do not emit

This commit is contained in:
Anton Kaliaev 2018-07-11 11:43:19 +04:00
parent 1377ef1e1f
commit 6fe8ea966a
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
2 changed files with 2 additions and 20 deletions

View File

@ -126,11 +126,7 @@ func benchmarkEventBus(numClients int, randQueries bool, randEvents bool, b *tes
} }
} }
var events = []string{EventBond, var events = []string{
EventUnbond,
EventRebond,
EventDupeout,
EventFork,
EventNewBlock, EventNewBlock,
EventNewBlockHeader, EventNewBlockHeader,
EventNewRound, EventNewRound,
@ -148,11 +144,7 @@ func randEvent() string {
return events[rand.Intn(len(events))] return events[rand.Intn(len(events))]
} }
var queries = []tmpubsub.Query{EventQueryBond, var queries = []tmpubsub.Query{
EventQueryUnbond,
EventQueryRebond,
EventQueryDupeout,
EventQueryFork,
EventQueryNewBlock, EventQueryNewBlock,
EventQueryNewBlockHeader, EventQueryNewBlockHeader,
EventQueryNewRound, EventQueryNewRound,

View File

@ -10,22 +10,17 @@ import (
// Reserved event types // Reserved event types
const ( const (
EventBond = "Bond"
EventCompleteProposal = "CompleteProposal" EventCompleteProposal = "CompleteProposal"
EventDupeout = "Dupeout"
EventFork = "Fork"
EventLock = "Lock" EventLock = "Lock"
EventNewBlock = "NewBlock" EventNewBlock = "NewBlock"
EventNewBlockHeader = "NewBlockHeader" EventNewBlockHeader = "NewBlockHeader"
EventNewRound = "NewRound" EventNewRound = "NewRound"
EventNewRoundStep = "NewRoundStep" EventNewRoundStep = "NewRoundStep"
EventPolka = "Polka" EventPolka = "Polka"
EventRebond = "Rebond"
EventRelock = "Relock" EventRelock = "Relock"
EventTimeoutPropose = "TimeoutPropose" EventTimeoutPropose = "TimeoutPropose"
EventTimeoutWait = "TimeoutWait" EventTimeoutWait = "TimeoutWait"
EventTx = "Tx" EventTx = "Tx"
EventUnbond = "Unbond"
EventUnlock = "Unlock" EventUnlock = "Unlock"
EventVote = "Vote" EventVote = "Vote"
EventProposalHeartbeat = "ProposalHeartbeat" EventProposalHeartbeat = "ProposalHeartbeat"
@ -113,11 +108,6 @@ const (
) )
var ( var (
EventQueryBond = QueryForEvent(EventBond)
EventQueryUnbond = QueryForEvent(EventUnbond)
EventQueryRebond = QueryForEvent(EventRebond)
EventQueryDupeout = QueryForEvent(EventDupeout)
EventQueryFork = QueryForEvent(EventFork)
EventQueryNewBlock = QueryForEvent(EventNewBlock) EventQueryNewBlock = QueryForEvent(EventNewBlock)
EventQueryNewBlockHeader = QueryForEvent(EventNewBlockHeader) EventQueryNewBlockHeader = QueryForEvent(EventNewBlockHeader)
EventQueryNewRound = QueryForEvent(EventNewRound) EventQueryNewRound = QueryForEvent(EventNewRound)