question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Latest 4 solc versions are missed.

See original GitHub issue

When listing the remote versions the loop misses the last 4 versions in the list.

for (var i = sources.length - 1; i >= 0; i--) {
    // FIXME: use build as well
    var version = sources[i].match(/^soljson-v([0-9.]*)-.*.js$/);

    // Skip invalid lines
    if (!version) {
      continue;
    }

    if (version[1] === wanted) {
      downloadBinary(sources[i].match(/^soljson-(.*).js$/)[1]);
      return;
    }
  }

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:11 (8 by maintainers)

github_iconTop GitHub Comments

1reaction
axiccommented, May 19, 2016

@Denton-L thank you! Answered your question on the PR.

0reactions
chrisethcommented, May 20, 2016

@Latrasis yes, good idea!

Read more comments on GitHub >

github_iconTop Results From Across the Web

solc-js - npm
Solidity compiler. Latest version: 0.8.17, last published: 3 months ago. Start using solc in your project by running `npm i solc`.
Read more >
How to upgrade solidity compiler in truffle
I'm trying the latest development version of solc, but I like the truffle testing framework. Is there a way to force truffle to...
Read more >
ParserError: Source file requires different compiler version
Now I get a different error. Completely lost here :( terminal: INFO: Could not find files for the given pattern(s). Brownie v1 ...
Read more >
truffle-solc-select - npm Package Health Analysis - Snyk
Handles multiple solc version compilation between smart contracts using the ... for a period of the last 12 months, excluding weekends and known...
Read more >
安装Solidity编译器 — Solidity develop 文档 - Read the Docs
We also have PPAs for Ubuntu. For the latest stable version. sudo add-apt-repository ppa:ethereum/ethereum sudo apt-get update sudo apt-get install solc.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found