This commit is contained in:
Michael Zhu
2022-01-12 19:11:08 -08:00
parent 160deee6ca
commit 05c37753ec
2 changed files with 3 additions and 3 deletions

View File

@@ -530,7 +530,7 @@ contract ERC1155OrdersFeature is
/// @dev Get the order info for an ERC1155 order.
/// @param order The ERC1155 order.
/// @return orderInfo Infor about the order.
/// @return orderInfo Info about the order.
function getERC1155OrderInfo(LibNFTOrder.ERC1155Order memory order)
public
override

View File

@@ -524,7 +524,7 @@ contract ERC721OrdersFeature is
sellOrders.length == buyOrders.length &&
sellOrderSignatures.length == buyOrderSignatures.length &&
sellOrders.length == sellOrderSignatures.length,
"Array length mismatch"
"ERC721OrdersFeature::batchMatchERC721Orders/ARRAY_LENGTH_MISMATCH"
);
profits = new uint256[](sellOrders.length);
successes = new bool[](sellOrders.length);
@@ -621,7 +621,7 @@ contract ERC721OrdersFeature is
{
require(
order.maker == msg.sender,
"ERC721OrdersFeature::preSignERC721Order/MAKER_MISMATCH"
"ERC721OrdersFeature::preSignERC721Order/ONLY_MAKER"
);
bytes32 orderHash = getERC721OrderHash(order);
LibERC721OrdersStorage.getStorage()