class Eth::Solidity

def initialize

used to compile Solidity contracts.
Instantiates a Solidity `solc` system compiler binding that can be
def initialize
  # Currently only supports `solc`.
  solc = get_compiler_path
  raise SystemCallError, "Unable to find the solc compiler path!" if solc.nil?
  @compiler = solc
end