https://github.com/code-423n4/2024-11-nibiru/blob/8ed91a036f664b421182e183f19f6cef1a4e28ea/app/evmante/evmante_sigverify.go#L33-L74
We can see that allowUnprotectedTxs is constantly set to false and then there is a next check that if allowUnprotectedTxs is false. Then, the transaction is not protected and it returns an error. However, since we already have allowUnprotectedTxs to always be false since its set in the context then there is no need for this overcomputation.
QA
Remove the setting of allowUnprotectedTxs to always be false and the check overall since its not needed, i.e.:
berndartmueller (judge) commented:
