Skip to content

Commit

Permalink
fix(excubiae): remove unnecessary payable in ERC721Excubia constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
0xjei committed Jun 28, 2024
1 parent fe1bd24 commit c605b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/excubiae/contracts/extensions/ERC721Excubia.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ contract ERC721Excubia is Excubia {

/// @notice Constructor to initialize with target ERC721 contract.
/// @param _erc721 The address of the ERC721 contract.
constructor(address _erc721) payable {
constructor(address _erc721) {
if (_erc721 == address(0)) revert ZeroAddress();

NFT = IERC721(_erc721);
Expand Down

0 comments on commit c605b58

Please sign in to comment.