()
| 42 | |
| 43 | |
| 44 | def compile_file(): |
| 45 | output = compile_files(["../rnode.sol"]) |
| 46 | abi = output['../rnode.sol:Rnode']["abi"] |
| 47 | bin = output['../rnode.sol:Rnode']["bin"] |
| 48 | print(abi) |
| 49 | print(bin) |
| 50 | config = {} |
| 51 | config["abi"] = abi |
| 52 | config["bin"] = bin |
| 53 | print("config: ") |
| 54 | print(config) |
| 55 | |
| 56 | return config |
| 57 | |
| 58 | |
| 59 | # def compile_contract(): |
no outgoing calls
no test coverage detected