Skip to content

Commit

Permalink
make dune key optional for now
Browse files Browse the repository at this point in the history
this should be removed later. we should
- add special handling of secrets, or
- check this variable at the start of the script
  • Loading branch information
fhenneke committed Nov 4, 2024
1 parent 6f6ce8b commit ff48c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def get_accounting_config(network: str) -> AccountingConfig:
)
safe_queue_url = f"{safe_url}/transactions/queue"

dune_api_key = os.environ["DUNE_API_KEY"]
dune_api_key = os.environ.get("DUNE_API_KEY", "")
signing_key = os.getenv("PROPOSER_PK")
if signing_key == "":
signing_key = None
Expand Down

0 comments on commit ff48c7b

Please sign in to comment.