Skip to content

Commit

Permalink
This should quieten a couple of warnings
Browse files Browse the repository at this point in the history
Update contracts/protocol/facets/ExchangeHandlerFacet.sol

Co-authored-by: Klemen <64400885+zajck@users.noreply.github.com>
  • Loading branch information
mischat and zajck committed May 4, 2023
1 parent e08ee49 commit 11b3452
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions contracts/protocol/facets/ExchangeHandlerFacet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ import { IERC20 } from "../../interfaces/IERC20.sol";
contract ExchangeHandlerFacet is IBosonExchangeHandler, BuyerBase, DisputeBase {
using Address for address;

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


/**
* @notice After v2.2.0, token ids are derived from offerId and exchangeId.
Expand All @@ -33,7 +34,7 @@ contract ExchangeHandlerFacet is IBosonExchangeHandler, BuyerBase, DisputeBase {
*
* @param _firstExchangeId2_2_0 - the first exchange id to use for 2.2.0
*/
constructor(uint256 _firstExchangeId2_2_0) {
constructor(uint256 _firstExchangeId2_2_0) { // solhint-disable-line
EXCHANGE_ID_2_2_0 = _firstExchangeId2_2_0;
}

Expand Down

0 comments on commit 11b3452

Please sign in to comment.