-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add get missing metadata contracts task #58
Conversation
Pull Request Test Coverage Report for Build 12764420527Details
💛 - Coveralls |
) -> None: | ||
contract_metadata_service = get_contract_metadata_service() | ||
# Just try the first time, following retries should be scheduled | ||
if await contract_metadata_service.should_attempt_download( | ||
if skip_attemp_download or await contract_metadata_service.should_attempt_download( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpicky: contract_metadata_service.should_attempt_download
conditional can be in a separate variable. It would be more understandable in the future. The comment only affects the second part of the condition
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is because I just want to evaluate the second part of the conditional y the first is True.
e07f147
to
dbd7bf9
Compare
Closes #52