Skip to content

Commit 8afa3b4

Browse files
committed
rollback solidity version
1 parent d50df30 commit 8afa3b4

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

packages/smart-contract/.solhint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"rules": {
77
"compiler-version": [
88
"error",
9-
"^0.8.29"
9+
"^0.8.19"
1010
],
1111
"func-visibility": [
1212
"warn",

packages/smart-contract/contracts/DataProtector.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.29;
19+
pragma solidity ^0.8.19;
2020
import "./interfaces/IDataProtector.sol";
2121

2222
contract DataProtector is IDataProtector {

packages/smart-contract/contracts/DatasetRegistryMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.29;
19+
pragma solidity ^0.8.19;
2020

2121
import "./interfaces/IDatasetRegistry.sol";
2222

packages/smart-contract/contracts/interfaces/IDataProtector.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.29;
19+
pragma solidity ^0.8.19;
2020

2121
import "./IDatasetRegistry.sol";
2222

packages/smart-contract/contracts/interfaces/IDataset.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.29;
19+
pragma solidity ^0.8.19;
2020

2121
interface IDataset {}

packages/smart-contract/contracts/interfaces/IDatasetRegistry.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.29;
19+
pragma solidity ^0.8.19;
2020

2121
import "./IDataset.sol";
2222

packages/smart-contract/hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const config: HardhatUserConfig = {
8282
},
8383
//compiler version
8484
solidity: {
85-
version: '0.8.29',
85+
version: '0.8.19',
8686
settings: {
8787
optimizer: {
8888
enabled: true,

0 commit comments

Comments
 (0)