Skip to content

Commit

Permalink
fix: undo something
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Aug 28, 2024
1 parent 99de09a commit aac1e08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape_node/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def _create_process(self) -> GethDevProcess:
# Include extra accounts to allocated funds to at genesis.
extra_accounts = self.settings.ethereum.local.get("extra_funded_accounts", [])
extra_accounts.extend(self.provider_settings.get("extra_funded_accounts", []))
extra_accounts = list({a.lower() for a in extra_accounts if isinstance(a, str)})
extra_accounts = list({a.lower() for a in extra_accounts})
test_config["extra_funded_accounts"] = extra_accounts
test_config["initial_balance"] = self.test_config.balance

Expand Down

0 comments on commit aac1e08

Please sign in to comment.