Peer tests and minor peer features/bug fixes.

This commit is contained in:
Robert Zajac
2018-11-02 16:16:46 -04:00
parent 330ed8363a
commit db6b846251
11 changed files with 221 additions and 28 deletions

View File

@ -2,7 +2,7 @@ from abc import ABC, abstractmethod
from .addrbook_interface import IAddrBook
from .peermetadata_interface import IPeerMetadata
class IPeerStore(ABC, IAddrBook, IPeerMetadata):
class IPeerStore(IAddrBook, IPeerMetadata):
def __init__(self):
IPeerMetadata.__init__(self)