Skip to content

Commit

Permalink
fix(plugins/execute): rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Oct 23, 2024
1 parent 294944b commit 7ac42ec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pytest_plugins/execute/pre_alloc.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,12 @@ def fund_eoa(
label: str | None = None,
storage: Storage | None = None,
delegation: Address | Literal["Self"] | None = None,
nonce: NumberConvertible | None = None,
) -> EOA:
"""
Add a previously unused EOA to the pre-alloc with the balance specified by `amount`.
"""
assert nonce is None, "nonce parameter is not supported for execute"
eoa = next(self._eoa_iterator)
# Send a transaction to fund the EOA
if amount is None:
Expand Down

0 comments on commit 7ac42ec

Please sign in to comment.