Merge pull request #231 from libp2p/feat/validator-data
add ValidatorData field to Message
This commit is contained in:
commit
28a87b3121
|
@ -155,6 +155,7 @@ type PubSubRouter interface {
|
||||||
type Message struct {
|
type Message struct {
|
||||||
*pb.Message
|
*pb.Message
|
||||||
ReceivedFrom peer.ID
|
ReceivedFrom peer.ID
|
||||||
|
VaidatorData interface{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Message) GetFrom() peer.ID {
|
func (m *Message) GetFrom() peer.ID {
|
||||||
|
@ -705,7 +706,7 @@ func (p *PubSub) handleIncomingRPC(rpc *RPC) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
msg := &Message{pmsg, rpc.from}
|
msg := &Message{pmsg, rpc.from, nil}
|
||||||
p.pushMsg(msg)
|
p.pushMsg(msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
topic.go
2
topic.go
|
@ -167,7 +167,7 @@ func (t *Topic) Publish(ctx context.Context, data []byte, opts ...PubOpt) error
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
case t.p.publish <- &Message{m, id}:
|
case t.p.publish <- &Message{m, id, nil}:
|
||||||
case <-t.p.ctx.Done():
|
case <-t.p.ctx.Done():
|
||||||
return t.p.ctx.Err()
|
return t.p.ctx.Err()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue