Skip to content

Commit 8e9b969

Browse files
committedJan 8, 2021
Use correct url for binaries.
1 parent 84199f3 commit 8e9b969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎wrapper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ function setupMethods (soljson) {
328328
// instead of from the local filesystem.
329329
loadRemoteVersion: function (versionString, cb) {
330330
var mem = new MemoryStream(null, {readable: false});
331-
var url = 'https://solc-bin.ethereum.org/bin/soljson-' + versionString + '.js';
331+
var url = 'https://binaries.soliditylang.org/bin/soljson-' + versionString + '.js';
332332
https.get(url, function (response) {
333333
if (response.statusCode !== 200) {
334334
cb(new Error('Error retrieving binary: ' + response.statusMessage));

0 commit comments

Comments
 (0)
Please sign in to comment.