returning bytecode by setting output_values
Open
- Dominant language
- Python
- Stars
- 142
- Forks
- 50
- PR merge metrics
- No merged PRs in 30d
Description
hi ,
```
>>> import solcx
>>> solcx.compile_source(
... "contract Foo { function bar() public { return; } }",
... output_values=["abi", "bin-runtime"],
...
... )
``` works fine
but ,
```
>>> import solcx
>>> solcx.compile_source(
... "contract Foo { function bar() public { return; } }",
... output_values=["abi", "bytecode"],
...
... )
```
is not ok
Contributor guide
Assessment
This issue has not been assessed yet.