solidity/scripts/bytecodecompare
cameel d48883ca17 Fix crashes in prepare_report.py caused by using str where bytes is expected and vice-versa
1) `Popen.communicate()` expects `bytes` (a raw, binary string) if `stdout`/`stderr` are open in binary mode but is given output from `json.loads()` which is str (an abstract unicode string). Encoding the `str` object into `bytes` using UTF-8 encoding fixes that.
2) `REPORT_FILE` gets opened in binary mode which means that functions like `write()` expect `bytes`. We're giving them `str` which results in an error. Changed mode to text solves the problem.
2020-01-20 17:33:44 +01:00
..
deploy_key.enc Create bytecode for all tests and push to remote repo. 2017-03-23 09:56:18 +01:00
prepare_report.py Fix crashes in prepare_report.py caused by using str where bytes is expected and vice-versa 2020-01-20 17:33:44 +01:00
storebytecode.bat Try to fix appveyor run by chaning bytecode pull output from stderr to stdout. 2019-09-04 10:57:01 +02:00
storebytecode.sh Update bytecode output to cope with metadata-only compilability. 2019-03-04 17:38:45 +01:00