mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
13 lines
267 B
Go
13 lines
267 B
Go
|
package p2p
|
||
|
|
||
|
import (
|
||
|
"github.com/tendermint/tendermint/p2p/tmconn"
|
||
|
"github.com/tendermint/tendermint/p2p/types"
|
||
|
)
|
||
|
|
||
|
type ID = types.ID
|
||
|
type NodeInfo = types.NodeInfo
|
||
|
|
||
|
type ChannelDescriptor = tmconn.ChannelDescriptor
|
||
|
type ConnectionStatus = tmconn.ConnectionStatus
|