updated to not require peerstore

This commit is contained in:
Alex Haynes
2018-10-21 14:48:53 -04:00
parent f51f975533
commit 08b37ee7cd
2 changed files with 5 additions and 6 deletions

View File

@ -2,8 +2,9 @@ from abc import ABC, abstractmethod
class IStream(ABC):
def __init__(self, peer_id):
def __init__(self, peer_id, maddr):
self.peer_id = peer_id
self.maddr = maddr
@abstractmethod
def protocol(self):