Skip to content

Commit

Permalink
fix: remove override keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
marktoda committed Nov 6, 2024
1 parent f7b60a7 commit 46557ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/UniswapV4DeployerCompetition.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ contract UniswapV4DeployerCompetition is IUniswapV4DeployerCompetition {
}

/// @inheritdoc IUniswapV4DeployerCompetition
function updateBestAddress(bytes32 salt) external override {
function updateBestAddress(bytes32 salt) external {
if (block.timestamp > competitionDeadline) {
revert CompetitionOver(block.timestamp, competitionDeadline);
}
Expand All @@ -67,7 +67,7 @@ contract UniswapV4DeployerCompetition is IUniswapV4DeployerCompetition {
}

/// @inheritdoc IUniswapV4DeployerCompetition
function deploy(bytes memory bytecode) external override {
function deploy(bytes memory bytecode) external {
if (keccak256(bytecode) != initCodeHash) {
revert InvalidBytecode();
}
Expand Down

0 comments on commit 46557ec

Please sign in to comment.