gear
gear copied to clipboard
`ethexe`: emitting an event for ValueClaimed when value == 0 is confusing
Problem to Solve
In ethexe/contracts/src/Mirror.sol, the function valueClaimed attempts to transfer tokens to a given destination. If value == 0, no transfer happens, but the function still emits the event ValueClaimed.
Possible Solution
If value is 0, emit a different event. Like ValueClaimAttempted.
Notes
No response