diff --git a/scripts/fork_fuzz_bots.py b/scripts/fork_fuzz_bots.py index ef4fb360c..473cf01c1 100644 --- a/scripts/fork_fuzz_bots.py +++ b/scripts/fork_fuzz_bots.py @@ -86,6 +86,14 @@ def _fuzz_ignore_errors(exc: Exception) -> bool: ): return True + # MinimumTransactionAmount error + if ( + isinstance(orig_exception, ContractCustomError) + and len(orig_exception.args) > 1 + and "MinimumTransactionAmount raised" in orig_exception.args[1] + ): + return True + # DecreasedPresentValueWhenAddingLiquidity error if ( isinstance(orig_exception, ContractCustomError)