Skip to content

Commit

Permalink
only emit Withdraw event when amount is > 0
Browse files Browse the repository at this point in the history
  • Loading branch information
BkChoy committed Nov 28, 2024
1 parent c166192 commit f7e31ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/core/priorityPool/PriorityPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ contract PriorityPool is UUPSUpgradeable, OwnableUpgradeable, PausableUpgradeabl

event UnqueueTokens(address indexed account, uint256 amount);
event ClaimLSDTokens(address indexed account, uint256 amount, uint256 amountWithYield);
event Deposit(address indexed account, uint256 poolAmount, uint256 queueAmount);
event Deposit(address indexed account, uint256 instantAmount, uint256 queueAmount);
event Withdraw(address indexed account, uint256 amount);
event UpdateDistribution(
bytes32 merkleRoot,
Expand Down

0 comments on commit f7e31ea

Please sign in to comment.