Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit f235a00

Browse files
authored
Merge pull request #6183 from trufflesuite/direction
Deprioritize Truffle relays
2 parents a49931b + e7a4630 commit f235a00

File tree

1 file changed

+3
-3
lines changed
  • packages/compile-solidity/src/compilerSupplier/loadingStrategies

1 file changed

+3
-3
lines changed

packages/compile-solidity/src/compilerSupplier/loadingStrategies/VersionRange.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ export class VersionRange {
3030
compilerRoots: [
3131
// this order of url root preference was recommended by Cameel from the
3232
// Solidity team here -- https://github.com/trufflesuite/truffle/pull/5008
33-
"https://relay.trufflesuite.com/solc/emscripten-wasm32/",
3433
"https://binaries.soliditylang.org/emscripten-wasm32/",
35-
"https://relay.trufflesuite.com/solc/emscripten-asmjs/",
3634
"https://binaries.soliditylang.org/emscripten-asmjs/",
3735
"https://solc-bin.ethereum.org/bin/",
38-
"https://ethereum.github.io/solc-bin/bin/"
36+
"https://ethereum.github.io/solc-bin/bin/",
37+
"https://relay.trufflesuite.com/solc/emscripten-wasm32/",
38+
"https://relay.trufflesuite.com/solc/emscripten-asmjs/"
3939
]
4040
};
4141
this.config = Object.assign({}, defaultConfig, options);

0 commit comments

Comments
 (0)