Skip to content

Commit

Permalink
Downgrade Solidity version.
Browse files Browse the repository at this point in the history
  • Loading branch information
wuestholz committed Oct 9, 2023
1 parent 10262fd commit 632d85e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/maze.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.8.19;
pragma solidity ^0.8.18;
/// automatically generated by Daedaluzz
contract Maze {
event AssertionFailed(string message);
Expand Down
4 changes: 2 additions & 2 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require("@nomicfoundation/hardhat-toolbox");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: {
version: "0.8.19",
version: "0.8.18",
settings: {
optimizer: {
enabled: false,
Expand All @@ -17,4 +17,4 @@ module.exports = {
allowUnlimitedContractSize: true,
},
},
};
};

0 comments on commit 632d85e

Please sign in to comment.