mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
Fix download secret key method of downloader (#2067)
This commit is contained in:
parent
ad47244d7a
commit
4e01bf208c
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ class PeerDownloader(ABC):
|
|||
self.squeak_store.save_squeak(squeak)
|
||||
|
||||
def download_secret_key(self, squeak_hash: bytes) -> None:
|
||||
squeak = self.client.get_squeak(squeak_hash)
|
||||
squeak = self.squeak_store.get_squeak(squeak_hash)
|
||||
|
||||
# Download the squeak if not already owned.
|
||||
if not squeak:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue