-
Notifications
You must be signed in to change notification settings - Fork 2
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
bug: multiple gitcoin downloads #196
Conversation
…rs, including global context into the providers to handle shutdown gracefully
Uplevel your code reviews with CodeRabbit ProCodeRabbit ProIf you like this project, please support us by purchasing the Pro version. The Pro version has advanced context, superior noise reduction and several proprietary improvements compared to the open source version. Moreover, CodeRabbit Pro is free for open source projects. |
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.
Files selected (12)
- cmd/census3/main.go (1)
- scanner/providers/farcaster/provider.go (3)
- scanner/providers/gitcoin/gitcoin_provider.go (8)
- scanner/providers/gitcoin/gitcoin_provider_test.go (2)
- scanner/providers/holders_provider.go (1)
- scanner/providers/manager/manager.go (4)
- scanner/providers/poap/poap_provider.go (4)
- scanner/providers/poap/poap_provider_test.go (1)
- scanner/providers/web3/erc20_provider.go (1)
- scanner/providers/web3/erc721_provider.go (1)
- scanner/providers/web3/erc777_provider.go (1)
- scanner/scanner.go (1)
Files not summarized due to errors (12)
- cmd/census3/main.go (nothing obtained from openai)
- scanner/providers/farcaster/provider.go (nothing obtained from openai)
- scanner/providers/holders_provider.go (nothing obtained from openai)
- scanner/providers/gitcoin/gitcoin_provider_test.go (nothing obtained from openai)
- scanner/providers/gitcoin/gitcoin_provider.go (nothing obtained from openai)
- scanner/providers/manager/manager.go (nothing obtained from openai)
- scanner/providers/web3/erc777_provider.go (nothing obtained from openai)
- scanner/providers/web3/erc20_provider.go (nothing obtained from openai)
- scanner/providers/poap/poap_provider_test.go (nothing obtained from openai)
- scanner/providers/poap/poap_provider.go (nothing obtained from openai)
- scanner/providers/web3/erc721_provider.go (nothing obtained from openai)
- scanner/scanner.go (nothing obtained from openai)
Files not reviewed due to errors (12)
- cmd/census3/main.go (no response)
- scanner/providers/manager/manager.go (no response)
- scanner/providers/farcaster/provider.go (no response)
- scanner/providers/gitcoin/gitcoin_provider_test.go (no response)
- scanner/providers/gitcoin/gitcoin_provider.go (no response)
- scanner/providers/holders_provider.go (no response)
- scanner/providers/web3/erc20_provider.go (no response)
- scanner/providers/poap/poap_provider_test.go (no response)
- scanner/providers/web3/erc777_provider.go (no response)
- scanner/scanner.go (no response)
- scanner/providers/poap/poap_provider.go (no response)
- scanner/providers/web3/erc721_provider.go (no response)
Review comments generated (0)
- Review: 0
- LGTM: 0
Tips
Chat with
CodeRabbit Bot (@coderabbitai
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@coderabbitai
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
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.
Files selected (2)
- scanner/providers/gitcoin/gitcoin_provider.go (8)
- scanner/providers/poap/poap_provider.go (6)
Files not summarized due to errors (2)
- scanner/providers/poap/poap_provider.go (nothing obtained from openai)
- scanner/providers/gitcoin/gitcoin_provider.go (nothing obtained from openai)
Files not reviewed due to errors (2)
- scanner/providers/gitcoin/gitcoin_provider.go (no response)
- scanner/providers/poap/poap_provider.go (no response)
Review comments generated (0)
- Review: 0
- LGTM: 0
Tips
Chat with
CodeRabbit Bot (@coderabbitai
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@coderabbitai
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
including an atomic var to handle multiple concurrent gitcoin providers, including global context into the providers to handle shutdown gracefully
Fix #195