Skip to content

Commit

Permalink
maint: make solidity version loose
Browse files Browse the repository at this point in the history
Updates the Solidity version being used here to a loose 0.8.0
version so that users of this contract can select their own
Solidity version.
  • Loading branch information
smartcontracts committed Oct 3, 2024
1 parent 4f628ec commit 3d3754a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/StatefulSponge.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
pragma solidity ^0.8.0;

import { LibKeccak } from "contracts/lib/LibKeccak.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/lib/LibKeccak.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
pragma solidity ^0.8.0;

/// @title LibKeccak
/// @notice An EVM implementation of the Keccak-f[1600] permutation.
Expand Down

0 comments on commit 3d3754a

Please sign in to comment.