Removing notion of context from peerstore

This commit is contained in:
Robert Zajac
2018-10-26 15:51:25 -04:00
parent 92e2bb4600
commit c3afb3d48a
4 changed files with 9 additions and 9 deletions

View File

@ -2,8 +2,8 @@ from abc import ABC, abstractmethod
class IPeerMetadata(ABC):
def __init__(self, context):
self.context = context
def __init__(self):
pass
@abstractmethod
def get(self, peer_id, key):