mirror of
https://github.com/tendermint/tendermint.git
synced 2026-06-04 05:12:36 +00:00
15 lines
268 B
Go
15 lines
268 B
Go
package p2p
|
|
|
|
import (
|
|
"github.com/cosmos/gogoproto/proto"
|
|
"github.com/tendermint/tendermint/p2p/conn"
|
|
)
|
|
|
|
type ChannelDescriptor = conn.ChannelDescriptor
|
|
type ConnectionStatus = conn.ConnectionStatus
|
|
|
|
type Envelope struct {
|
|
ChannelID byte
|
|
Message proto.Message
|
|
}
|