Skip to content

Commit

Permalink
Fix DocStringParsingError
Browse files Browse the repository at this point in the history
  • Loading branch information
Kourouta committed Feb 22, 2023
1 parent 1196371 commit 141d427
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions assets/eip-6123/contracts/ISDC.sol
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ interface ISDC {
/**
* @dev Emitted when a new trade is incepted from a eligible counterparty
* @param initiator is the address from which trade was incepted
* @param tradeID is the tradeID (e.g. generated internally)
* @param tradeId is the trade ID (e.g. generated internally)
* @param tradeData holding the trade parameters
*/
event TradeIncepted(address initiator, string tradeId, string tradeData);
Expand Down Expand Up @@ -116,14 +116,14 @@ interface ISDC {
/**
* @dev Emitted when a counterparty proactively requests an early termination of the underlying trade
* @param cpAddress the address of the requesting party
* @param tradeID the trade identifier which is supposed to be terminated
* @param tradeId the trade identifier which is supposed to be terminated
*/
event TradeTerminationRequest(address cpAddress, string tradeId);

/**
* @dev Emitted when early termination request is confirmed by the opposite party
* @param cpAddress the party which confirms the trade termination
* @param tradeID the trade identifier which is supposed to be terminated
* @param tradeId the trade identifier which is supposed to be terminated
*/
event TradeTerminationConfirmed(address cpAddress, string tradeId);

Expand Down Expand Up @@ -176,14 +176,14 @@ interface ISDC {
/**
* @notice Called from a counterparty to request a mutual termination
* @dev emits a {TradeTerminationRequest}
* @param tradeID the trade identifier which is supposed to be terminated
* @param tradeId the trade identifier which is supposed to be terminated
*/
function requestTradeTermination(string memory tradeId) external;

/**
* @notice Called from a counterparty to confirm a termination, which will triggers a final settlement before trade gets inactive
* @dev emits a {TradeTerminationConfirmed}
* @param tradeID the trade identifier of the trade which is supposed to be terminated
* @param tradeId the trade identifier of the trade which is supposed to be terminated
*/
function confirmTradeTermination(string memory tradeId) external;
}
Expand Down

0 comments on commit 141d427

Please sign in to comment.