move ResultEvent to go-events

This commit is contained in:
Ethan Buchman
2016-01-12 18:09:19 -05:00
parent fb59255095
commit ee449a94c8
4 changed files with 7 additions and 15 deletions

View File

@ -188,7 +188,8 @@ func (n *Node) StartRPC() (net.Listener, error) {
// conflicts with their own rpc
wire.RegisterInterface(
struct{ rpctypes.Result }{},
wire.ConcreteType{&ctypes.TendermintResult{}, 0x1},
wire.ConcreteType{&events.EventResult{}, 0x1},
wire.ConcreteType{&ctypes.TendermintResult{}, 0x2},
)
mux := http.NewServeMux()