You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
testContractTransaction1: After building the docker container and running the simulation using the README provided in the github repo, testcon.sol is compiled into testcon.bin. I simply copied that file into the root directory of the project. Before doing this, testContractTransaction1 was failing because it couldn't find testcon.bin.
The compilation of the testcon.sol takes place in line 12 of the dockerfile
The possible solutions I can think of are:
a) just keep the compiled testcon.bin file in the repo — this is in fact what I pushed to the branch
testContractTransaction1
: After building the docker container and running the simulation using theREADME
provided in the github repo,testcon.sol
is compiled intotestcon.bin
. I simply copied that file into the root directory of the project. Before doing this,testContractTransaction1
was failing because it couldn't findtestcon.bin
.The compilation of the
testcon.sol
takes place in line 12 of thedockerfile
The possible solutions I can think of are:
a) just keep the compiled
testcon.bin
file in the repo — this is in fact what I pushed to the branchb) figure out a way to do the compilation in the test itself. https://ethereum.stackexchange.com/questions/16299/compiling-smart-contract-in-java has a solution using
processbuilder
- 7 linesThe text was updated successfully, but these errors were encountered: