mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-07 12:32:14 +00:00
31 lines
415 B
Go
31 lines
415 B
Go
|
package peer
|
||
|
|
||
|
/* Msg */
|
||
|
|
||
|
type Msg struct {
|
||
|
Bytes ByteSlice
|
||
|
Hash ByteSlice
|
||
|
}
|
||
|
|
||
|
|
||
|
/* InboundMsg */
|
||
|
|
||
|
type InboundMsg struct {
|
||
|
Peer *Peer
|
||
|
Channel *Channel
|
||
|
Time Time
|
||
|
Msg
|
||
|
}
|
||
|
|
||
|
|
||
|
/* NewFilterMsg */
|
||
|
|
||
|
type NewFilterMsg struct {
|
||
|
ChName String
|
||
|
Filter Filter
|
||
|
}
|
||
|
|
||
|
func (m *NewFilterMsg) WriteTo(w io.Writer) (int64, error) {
|
||
|
return 0, nil // TODO
|
||
|
}
|