mirror of https://github.com/embarklabs/embark.git
fix redeploy of contracts on spaces
This commit is contained in:
parent
8c3ac34fac
commit
47ec2f2d8a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue