bmuller / kademlia

A DHT in Python using asyncio
http://kademlia.readthedocs.org
MIT License
830 stars 210 forks source link

Kademlia is dependent on Forgetful Storage #45

Closed bretttjohnson1 closed 6 years ago

bretttjohnson1 commented 6 years ago

Forgetful Storage should probably be the base class that is extended as it kademlia is dependent on the functions in it. example: https://github.com/bmuller/kademlia/blob/master/kademlia/network.py#L98

bmuller commented 6 years ago

That method exists in the interface: https://github.com/bmuller/kademlia/blob/master/kademlia/storage.py#L30

bretttjohnson1 commented 6 years ago

oops, my bad. Didn't see it for some reason.