Skip to content

Commit 66eb1a5

Browse files
committed
chore(contracts): update-natspec
1 parent 9b329d7 commit 66eb1a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/src/CurateV2.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ contract CurateV2 is IArbitrableV2 {
392392

393393
/// @dev Submit a request to remove an item from the list. Accepts enough ETH to cover the deposit, reimburses the rest.
394394
/// @param _itemID The ID of the item to remove.
395-
/// @param _evidence A link to evidence using its URI.
395+
/// @param _evidence Stringified evidence object, example: '{"name" : "Justification", "description" : "Description", "fileURI" : "/ipfs/QmWQV5ZFFhEJiW8Lm7ay2zLxC2XS4wx1b2W7FfdrLMyQQc"}'.
396396
function removeItem(bytes32 _itemID, string calldata _evidence) external payable {
397397
Item storage item = items[_itemID];
398398

@@ -430,7 +430,7 @@ contract CurateV2 is IArbitrableV2 {
430430

431431
/// @dev Challenges the request of the item. Accepts enough ETH to cover the deposit, reimburses the rest.
432432
/// @param _itemID The ID of the item which request to challenge.
433-
/// @param _evidence A link to evidence using its URI.
433+
/// @param _evidence Stringified evidence object, example: '{"name" : "Justification", "description" : "Description", "fileURI" : "/ipfs/QmWQV5ZFFhEJiW8Lm7ay2zLxC2XS4wx1b2W7FfdrLMyQQc"}'.
434434
function challengeRequest(bytes32 _itemID, string calldata _evidence) external payable {
435435
Item storage item = items[_itemID];
436436
require(item.status > Status.Registered, "The item must have a pending request.");

0 commit comments

Comments
 (0)