Files
tendermint/p2p/types.go
2022-10-19 11:07:46 -04:00

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
}