Skip to content

Commit

Permalink
Updated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
yahgwai committed Aug 19, 2024
1 parent 5766ac5 commit e33c353
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/express-lane-auction/IExpressLaneAuction.sol
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,10 @@ interface IExpressLaneAuction is IAccessControlEnumerableUpgradeable, IERC165Upg
function roundTimestamps(uint64 round) external view returns (uint64 start, uint64 end);

/// @notice Update the beneficiary to a new address
/// Flushes any pending balance to the current beneficiary before updating
/// Setting the beneficiary does not flush any pending balance, so anyone calling this function should consider
/// whether they want to flush before calling set.
/// It is expected that the DAO will have the rights to set beneficiary, and since they execute calls via
/// action contract they can atomically call flush and set beneficiary together.
/// @param newBeneficiary The new beneficiary
function setBeneficiary(address newBeneficiary) external;

Expand Down

0 comments on commit e33c353

Please sign in to comment.