fix redeploy of contracts on spaces

This commit is contained in:
Jonathan Rainville 2018-09-11 15:20:57 -04:00
parent 8c3ac34fac
commit 47ec2f2d8a
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class ContractsManager {
contract.code = compiledContract.code;
contract.runtimeBytecode = compiledContract.runtimeBytecode;
contract.realRuntimeBytecode = (contract.realRuntimeBytecode || contract.runtimeBytecode);
contract.realRuntimeBytecode = (compiledContract.realRuntimeBytecode || compiledContract.runtimeBytecode);
contract.swarmHash = compiledContract.swarmHash;
contract.gasEstimates = compiledContract.gasEstimates;
contract.functionHashes = compiledContract.functionHashes;