Skip to content

Commit

Permalink
fix: remove fallback functions (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev authored Dec 19, 2024
1 parent fd3d640 commit fcab2fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions contracts/nft/contracts/evm/UniversalNFT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,6 @@ contract UniversalNFT is
emit TokenTransferReverted(sender, tokenId, uri);
}

receive() external payable {}

fallback() external payable {}

// The following functions are overrides required by Solidity.

function _update(
Expand Down Expand Up @@ -211,4 +207,6 @@ contract UniversalNFT is
function _authorizeUpgrade(
address newImplementation
) internal override onlyOwner {}

receive() external payable {}
}
6 changes: 2 additions & 4 deletions contracts/token/contracts/evm/UniversalToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,9 @@ contract UniversalToken is
emit TokenTransferReverted(receiver, amount);
}

receive() external payable {}

fallback() external payable {}

function _authorizeUpgrade(
address newImplementation
) internal override onlyOwner {}

receive() external payable {}
}

0 comments on commit fcab2fa

Please sign in to comment.