We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm facing an error trying to use solar deploy.
solar deploy contracts/A.sol '[100]' exec: solc [contracts/A.sol --combined bin,metadata --optimize --allow-paths /my/own/path] compile: unrecognised option '--combined'
The contract which I'm trying to compile and deploy is a simple one;
pragma solidity ^0.4.11; contract A { uint256 a; function A(uint256 _a) { a = _a; } }
While my solc version is; solc --version
solc, the solidity compiler commandline interface Version: _0.4.21+commit.dfe3193c.Linux.g++_
I also have a qtum regtest properly running localy and a set of environment variables initialized;
export QTUM_RPC_USER='<my rpc user>' export QTUM_RPC_PASS='<my rpc user password>' export QTUM_RPC=http://<my rpc user>:<my rpc user pass>@localhost:13889 export QTUM_SENDER=qc5EBEDbJhG7iFtQygENqEP6TtmtPTqJWB
The text was updated successfully, but these errors were encountered:
I have the same issue. SO i PRed.
Sorry, something went wrong.
No branches or pull requests
I'm facing an error trying to use solar deploy.
solar deploy contracts/A.sol '[100]'
exec: solc [contracts/A.sol --combined bin,metadata --optimize --allow-paths /my/own/path]
compile: unrecognised option '--combined'
The contract which I'm trying to compile and deploy is a simple one;
While my solc version is;
solc --version
I also have a qtum regtest properly running localy and a set of environment variables initialized;
The text was updated successfully, but these errors were encountered: