Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove fallback functions #26

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
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
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 {}
}
Loading