Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This should quieten a couple of warnings #620

Merged
merged 1 commit into from
May 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion contracts/protocol/facets/ExchangeHandlerFacet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ 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,6 +33,7 @@ contract ExchangeHandlerFacet is IBosonExchangeHandler, BuyerBase, DisputeBase {
*
* @param _firstExchangeId2_2_0 - the first exchange id to use for 2.2.0
*/
//solhint-disable-next-line
constructor(uint256 _firstExchangeId2_2_0) {
EXCHANGE_ID_2_2_0 = _firstExchangeId2_2_0;
}
Expand Down