forked from LBRYCommunity/lbry-sdk
Instantiate resolver before the request to hold the selected height
This commit is contained in:
parent
69b60c19c3
commit
3b9d6c4f8e
1 changed files with 2 additions and 1 deletions
|
@ -65,8 +65,9 @@ class MainNetLedger(BaseLedger):
|
|||
except Exception as e:
|
||||
return {'error': str(e)}
|
||||
try:
|
||||
resolver = self.resolver
|
||||
resolutions = await self.network.get_values_for_uris(self.headers.hash().decode(), *uris)
|
||||
return await self.resolver._handle_resolutions(resolutions, uris, page, page_size)
|
||||
return await resolver._handle_resolutions(resolutions, uris, page, page_size)
|
||||
except Exception as e:
|
||||
return {'error': str(e)}
|
||||
|
||||
|
|
Loading…
Reference in a new issue