diff --git a/src/pytest_plugins/execute/pre_alloc.py b/src/pytest_plugins/execute/pre_alloc.py index 7f460c51cc..c8ffec4f9a 100644 --- a/src/pytest_plugins/execute/pre_alloc.py +++ b/src/pytest_plugins/execute/pre_alloc.py @@ -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: