use contractAddress instead of address

This commit is contained in:
Iuri Matias 2018-06-18 10:22:04 -04:00
parent f9e62b9f49
commit 5c6e6e50f9
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class DeployTracker {
this.events.on("deploy:beforeAll", this.setCurrentChain.bind(this));
this.events.on("deploy:contract:deployed", (contract) => {
self.trackContract(contract.className, contract.realRuntimeBytecode, contract.realArgs, contract.address);
self.trackContract(contract.className, contract.realRuntimeBytecode, contract.realArgs, contract.deployedAddress);
self.save();
});