fixes incomplete async annotation (#1015)
This commit is contained in:
parent
ab019a08ae
commit
3f510eb501
|
@ -58,7 +58,7 @@ proc deleteExpiredBlock(self: BlockMaintainer, cid: Cid): Future[void] {.async.}
|
||||||
if isErr (await self.repoStore.delBlock(cid)):
|
if isErr (await self.repoStore.delBlock(cid)):
|
||||||
trace "Unable to delete block from repoStore"
|
trace "Unable to delete block from repoStore"
|
||||||
|
|
||||||
proc processBlockExpiration(self: BlockMaintainer, be: BlockExpiration): Future[void] {.async} =
|
proc processBlockExpiration(self: BlockMaintainer, be: BlockExpiration): Future[void] {.async.} =
|
||||||
if be.expiry < self.clock.now:
|
if be.expiry < self.clock.now:
|
||||||
await self.deleteExpiredBlock(be.cid)
|
await self.deleteExpiredBlock(be.cid)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue