Skip to content

Commit 21b9574

Browse files
committed
feat: downgrade solidity pragma 0.8.19
1 parent 4de8b1c commit 21b9574

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"editor.formatOnSave": true,
44
"prettier.documentSelectors": ["**/*.sol"],
55
"solidity.formatter": "prettier",
6-
"typescript.tsdk": "node_modules/typescript/lib"
6+
"typescript.tsdk": "node_modules/typescript/lib",
7+
"solidity.compileUsingRemoteVersion": "v0.8.19+commit.7dd6d404"
78
}

contracts/Token.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity >=0.8.20;
2+
pragma solidity >=0.8.19;
33

44
import "@openzeppelin/contracts/access/Ownable.sol";
55
import "@openzeppelin/contracts/security/Pausable.sol";

0 commit comments

Comments
 (0)