solc appears to generate two bytecode blobs per contract, and truffle relies on both: bytecode includes the wrapper code necessary to init and deploy the contract, and deployedBytecode just contains the core, deployed code. Right now we are only generating the latter but we are calling it the former.
Duplicates #3
solc appears to generate two bytecode blobs per contract, and truffle relies on both:
bytecode
includes the wrapper code necessary to init and deploy the contract, anddeployedBytecode
just contains the core, deployed code. Right now we are only generating the latter but we are calling it the former.