Skip to content

Commit fba38a4

Browse files
authored
πŸ”§ upgrade solidity to 0.8.15 (#12)
upgrade: solidity to 0.8.15
1 parent 9f54db7 commit fba38a4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

β€Žfoundry.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
src = 'src'
33
out = 'out'
44
libs = ['lib']
5-
solc_version = "0.8.14"
5+
solc_version = "0.8.15"
66

77
# See more config options https://github.com/foundry-rs/foundry/tree/master/config

β€Žscript/AccountRegistry.s.solβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity ^0.8.14;
2+
pragma solidity ^0.8.15;
33

44
import "forge-std/Script.sol";
55

β€Žsrc/AccountRegistry.solβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity ^0.8.14;
2+
pragma solidity ^0.8.15;
33

44
error Unauthorized(); // The caller does not have the authority to perform this action.
55
error ZeroId(); // The id is zero, which is invalid

β€Žsrc/Namespace.solβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity ^0.8.14;
2+
pragma solidity ^0.8.15;
33

44
import {ERC721} from "../lib/solmate/src/tokens/ERC721.sol";
55

β€Žtest/AccountRegistry.t.solβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity ^0.8.14;
2+
pragma solidity ^0.8.15;
33

44
import "forge-std/Test.sol";
55
import "../src/AccountRegistry.sol";

β€Žtest/Namespace.t.solβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity ^0.8.14;
2+
pragma solidity ^0.8.15;
33

44
import "forge-std/Test.sol";
55
import "../src/Namespace.sol";

0 commit comments

Comments
Β (0)