Change SwarmConn.conn to muxed_conn

This commit is contained in:
mhchia
2019-09-23 15:46:50 +08:00
parent 8d2415a404
commit 92deae41dc
7 changed files with 15 additions and 13 deletions

View File

@ -7,7 +7,7 @@ from libp2p.stream_muxer.abc import IMuxedConn
class INetConn(Closer):
conn: IMuxedConn
muxed_conn: IMuxedConn
@abstractmethod
async def new_stream(self) -> INetStream: