Skip to content

Commit f03bd63

Browse files
authored
Merge pull request #3759 from ethereum/yann300-patch-53
fix matomo ids
2 parents ab6c24d + 61de4be commit f03bd63

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

apps/remix-ide-e2e/src/tests/remixd.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ module.exports = {
104104
})
105105
.addFile('test_import_node_modules_with_github_import.sol', sources[4]['test_import_node_modules_with_github_import.sol'])
106106
.clickLaunchIcon('solidity')
107-
.setSolidityCompilerVersion('soljson-v0.8.0+commit.c7dfd78e.js') // open-zeppelin moved to pragma ^0.8.0
107+
.setSolidityCompilerVersion('soljson-v0.8.19+commit.7dd6d404.js') // open-zeppelin moved to pragma ^0.8.0
108108
.testContracts('test_import_node_modules_with_github_import.sol', sources[4]['test_import_node_modules_with_github_import.sol'], ['ERC20', 'test11'])
109109
},
110110
'Static Analysis run with remixd #group3': '' + function (browser) {

apps/remix-ide-e2e/src/tests/solidityImport.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module.exports = {
3838

3939
'Test GitHub Import - from master branch #group1': function (browser: NightwatchBrowser) {
4040
browser
41-
.setSolidityCompilerVersion('soljson-v0.8.0+commit.c7dfd78e.js') // open-zeppelin moved to pragma ^0.8.0 (master branch)
41+
.setSolidityCompilerVersion('soljson-v0.8.19+commit.7dd6d404.js') // open-zeppelin moved to pragma ^0.8.19 (master branch)
4242
.addFile('Untitled4.sol', sources[3]['Untitled4.sol'])
4343
.clickLaunchIcon('filePanel')
4444
.verifyContracts(['test7', 'ERC20'], { wait: 10000 })
@@ -54,7 +54,7 @@ module.exports = {
5454

5555
'Test GitHub Import - no branch specified #group2': function (browser: NightwatchBrowser) {
5656
browser
57-
.setSolidityCompilerVersion('soljson-v0.8.0+commit.c7dfd78e.js') // open-zeppelin moved to pragma ^0.8.0 (master branch)
57+
.setSolidityCompilerVersion('soljson-v0.8.19+commit.7dd6d404.js') // open-zeppelin moved to pragma ^0.8.19 (master branch)
5858
.clickLaunchIcon('filePanel')
5959
.click('li[data-id="treeViewLitreeViewItemREADME.txt"')
6060
.addFile('Untitled6.sol', sources[5]['Untitled6.sol'])
@@ -64,6 +64,7 @@ module.exports = {
6464

6565
'Test GitHub Import - raw URL #group4': function (browser: NightwatchBrowser) {
6666
browser
67+
.setSolidityCompilerVersion('soljson-v0.8.19+commit.7dd6d404.js') // open-zeppelin moved to pragma ^0.8.0 (master branch)
6768
.clickLaunchIcon('filePanel')
6869
.click('li[data-id="treeViewLitreeViewItemREADME.txt"')
6970
.addFile('Untitled7.sol', sources[6]['Untitled7.sol'])

apps/remix-ide/src/assets/js/loader.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ const domains = {
66
}
77

88
const domainsSecondaryTracker = {
9-
'remix-alpha.ethereum.org': 12,
10-
'remix-beta.ethereum.org': 10,
11-
'remix.ethereum.org': 8,
12-
'6fd22d6fe5549ad4c4d8fd3ca0b7816b.mod': 20 // remix desktop
9+
'remix-alpha.ethereum.org': 27,
10+
'remix-beta.ethereum.org': 25,
11+
'remix.ethereum.org': 23,
12+
'6fd22d6fe5549ad4c4d8fd3ca0b7816b.mod': 35 // remix desktop
1313
}
1414

1515
if (domains[window.location.hostname]) {

0 commit comments

Comments
 (0)