私は単なる契約をコンパイルするために強固性を使用するときに質問があります。 またそのように:結果は「未定義」である理由強固性は定義されていません
> web3.eth.getCompilers()
["Solidity"]
> source = "contract test { function multiply(uint a) returns(uint d) { return a * 7; } }"
"contract test { function multiply(uint a) returns(uint d) { return a * 7; } }"
> source
"contract test { function multiply(uint a) returns(uint d) { return a * 7; } }"
> clientContract = eth.compile.solidity(source).test
undefined
私が間違っているものを、知らないのですか?私はそれをMac OS X上で使用しています。
また、Ubuntuでも同じ質問があります。 –