We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84199f3 commit 8e9b969Copy full SHA for 8e9b969
wrapper.js
@@ -328,7 +328,7 @@ function setupMethods (soljson) {
328
// instead of from the local filesystem.
329
loadRemoteVersion: function (versionString, cb) {
330
var mem = new MemoryStream(null, {readable: false});
331
- var url = 'https://solc-bin.ethereum.org/bin/soljson-' + versionString + '.js';
+ var url = 'https://binaries.soliditylang.org/bin/soljson-' + versionString + '.js';
332
https.get(url, function (response) {
333
if (response.statusCode !== 200) {
334
cb(new Error('Error retrieving binary: ' + response.statusMessage));
0 commit comments