Skip to content

Commit

Permalink
contracts-bedrock: be explicit with mintable erc721 token version
Browse files Browse the repository at this point in the history
Previously any solidity version greater than 0.8.15 was allowed,
this updates it such that exactly 0.8.15 is allowed. This
matches the style of the other contracts in the system.
  • Loading branch information
tynes committed Feb 14, 2023
1 parent c1153b2 commit df48537
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
pragma solidity 0.8.15;

import {
ERC721Enumerable
Expand Down

0 comments on commit df48537

Please sign in to comment.