Skip to content

Commit

Permalink
Solved issue iiitl#8
Browse files Browse the repository at this point in the history
  • Loading branch information
Dishant-garg committed Mar 16, 2024
1 parent 40d1fec commit a4fbf5d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contracts/Contract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface IERC721 {
address _from,
address _to,
uint256 _id
);
)external;
}
contract Contract {
address public nftaddress;
Expand Down Expand Up @@ -51,11 +51,11 @@ contract Contract {

function list1(
uint256 _nftID,
string _amenities,
uint256 _sqfoot,
string memory _amenities,
uint256 _sqfoot,
uint256 _bedno,
string _img,
string _descp,
string memory _img,
string memory _descp,
uint256 _purchasePrice,
uint256 _tokenID)public {
IERC721(nftaddress).transferFrom(seller, address(this), _tokenID);
Expand Down

0 comments on commit a4fbf5d

Please sign in to comment.