Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Uniswap e2e test "nonce too low" (#7633)
The uniswap e2e test was intermittently failing with "nonce too low" error when deploying the L1 contracts needed for testing. See [here](https://github.com/AztecProtocol/aztec-packages/actions/runs/10113107392/job/27969400151?pr=7630#step:4:1187) for an example run. This seems to happen because the same L1 account is used for pushing blocks from the sequencer and for deploying the contracts in the test. If both components try to send a tx at the same time, it fails with nonce too low since they clash on the nonce used. This PR changes it so the deployment of contracts for the test happens using a different anvil account.
- Loading branch information