Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/QueryTypeStakerFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ contract QueryTypeStakerFactory is Ownable {
/// @param _newRecipient The new address to receive fees.
function _setFeeRecipient(address _newRecipient) internal {
if (_newRecipient == address(0)) revert QueryTypeStakerFactory__InvalidRecipient();
address old = feeRecipient;
emit FeeRecipientUpdated(feeRecipient, _newRecipient);
feeRecipient = _newRecipient;
emit FeeRecipientUpdated(old, _newRecipient);
}
}
Loading