Skip to content

Commit

Permalink
This should fix a linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mischat committed May 29, 2023
1 parent 11b3452 commit d05b40f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/protocol/facets/ExchangeHandlerFacet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ contract ExchangeHandlerFacet is IBosonExchangeHandler, BuyerBase, DisputeBase {

uint256 private immutable EXCHANGE_ID_2_2_0; // solhint-disable-line


/**
* @notice After v2.2.0, token ids are derived from offerId and exchangeId.
* EXCHANGE_ID_2_2_0 is the first exchange id to use for 2.2.0.
* Set EXCHANGE_ID_2_2_0 in the constructor.
*
* @param _firstExchangeId2_2_0 - the first exchange id to use for 2.2.0
*/
constructor(uint256 _firstExchangeId2_2_0) { // solhint-disable-line
constructor(uint256 _firstExchangeId2_2_0) {
// solhint-disable-line
EXCHANGE_ID_2_2_0 = _firstExchangeId2_2_0;
}

Expand Down

0 comments on commit d05b40f

Please sign in to comment.