The detection bot: ``` contract DetectionBot is IDetectionBot { IForta public forta; constructor (IForta forta_) { forta = forta_; } function handleTransaction(address user, bytes calldata msgData) external { forta.raiseAlert(user); return; } } ``` will auto raise alerts and effectively DDOS the delegateTransfer method. It passes as a valid solution to the level though.