-
-
Notifications
You must be signed in to change notification settings - Fork 775
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
remove duplicate env key ETHERSCAN_API_KEY
#7184
Conversation
Codecov Report
@@ Coverage Diff @@
## master #7184 +/- ##
==========================================
+ Coverage 26.19% 26.20% +0.01%
==========================================
Files 297 297
Lines 29376 29375 -1
Branches 4339 4339
==========================================
+ Hits 7695 7699 +4
+ Misses 21410 21405 -5
Partials 271 271
Continue to review full report at Codecov.
|
ETHERSCAN_API_KEY
ETHERSCAN_API_KEY
@@ -577,9 +577,6 @@ def callback(request): | |||
GITHUB_API_TOKEN = env('GITHUB_API_TOKEN', default='') # TODO | |||
GITHUB_APP_NAME = env('GITHUB_APP_NAME', default='gitcoin-local') | |||
|
|||
# Etherscan API | |||
ETHERSCAN_API_KEY = env('ETHERSCAN_API_KEY', default='') |
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.
Is this duplicated as well? I couldn't find it
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.
@thelostone-mc That was the original line, however, PR #6940 added the duplicate to line 56, so I removed the original from L581 and kept then one from the PR. Same with the local.env file.
See:
Line 56 in 82b91f9
ETHERSCAN_API_KEY = env('ETHERSCAN_API_KEY', default='YOUR-ETHERSCAN-KEY') |
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.
nice catch
Description
remove duplicate .env key
ETHERSCAN_API_KEY
Refers/Fixes
Testing