Skip to content

Commit

Permalink
add biddingUnixNano in BuyArtwork event
Browse files Browse the repository at this point in the history
  • Loading branch information
jollyjoker992 committed Feb 7, 2024
1 parent 93b319b commit 84472d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/FeralfileArtworkV5.sol
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ contract FeralfileExhibitionV5 is
}
}

emit BuyArtwork(saleData_.destination, saleData_.tokenIds[i]);
emit BuyArtwork(saleData_.destination, saleData_.tokenIds[i], saleData_.biddingUnixNano);
}

require(
Expand Down Expand Up @@ -651,7 +651,7 @@ contract FeralfileExhibitionV5 is
event BurnArtwork(uint256 indexed tokenId, uint256 amount);

/// @notice Event emitted when Artwork has been sold
event BuyArtwork(address indexed buyer, uint256 indexed tokenId);
event BuyArtwork(address indexed buyer, uint256 indexed tokenId, uint256 biddingUnixNano);

/// @notice Event emitted when contract URI has been updated
event ContractURIUpdated();
Expand Down

0 comments on commit 84472d2

Please sign in to comment.