We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cd9d52 commit 1d63ebdCopy full SHA for 1d63ebd
test_all_tools.py
@@ -139,9 +139,8 @@ def run_all_tests(self):
139
"""Run tests for all tool categories."""
140
141
print("🧪 Starting comprehensive tool testing...")
142
- api_key = os.environ.get('ETHERSCAN_API_KEY', 'NOT_SET')
143
- if api_key != 'NOT_SET':
144
- print(f"Using API Key: {api_key[:10]}...")
+ if os.environ.get('ETHERSCAN_API_KEY'):
+ print("Using ETHERSCAN_API_KEY from environment.")
145
print("=" * 80)
146
147
# Test each category
0 commit comments