Skip to content

Commit

Permalink
chore: allow oToken contracts to be compiled at 0.8.15+
Browse files Browse the repository at this point in the history
  • Loading branch information
Oighty committed Nov 22, 2024
1 parent 197aba1 commit b8ce2ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bases/OptionToken.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.8.15;
pragma solidity ^0.8.15;

import {ERC20} from "solmate/tokens/ERC20.sol";
import {CloneERC20} from "src/lib/clones/CloneERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/fixed-strike/FixedStrikeOptionToken.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.8.15;
pragma solidity ^0.8.15;

import {OptionToken, ERC20} from "src/bases/OptionToken.sol";

Expand Down

0 comments on commit b8ce2ca

Please sign in to comment.