Merge branch 'develop' of https://github.com/ethereum/ethereum.js into develop

This commit is contained in:
Marek Kotewicz 2015-07-21 11:36:01 +02:00
commit 9303d5c576
3 changed files with 28 additions and 17 deletions

View File

@ -34,14 +34,18 @@
// create contract
document.getElementById('status').innerText = "transaction sent, waiting for confirmation";
web3.eth.contract(abi).new({data: code}, function (err, contract) {
if (err) {
if(err) {
console.error(err);
return;
}
// callback fires twice, we only want the second call when the contract is deployed
} else if(contract.address){
myContract = contract;
console.log('address: ' + myContract.address);
document.getElementById('status').innerText = 'Mined!';
document.getElementById('call').style.visibility = 'visible';
}
});
}

View File

@ -37,12 +37,16 @@
if (err) {
console.error(err);
return;
}
// callback fires twice, we only want the second call when the contract is deployed
} else if(contract.address){
myContract = contract;
console.log('address: ' + myContract.address);
document.getElementById('status').innerText = 'Mined!';
document.getElementById('call').style.visibility = 'visible';
}
});
}

View File

@ -42,7 +42,9 @@
if (err) {
console.error(err);
return;
}
// callback fires twice, we only want the second call when the contract is deployed
} else if(contract.address){
contract = c;
console.log('address: ' + contract.address);
@ -50,6 +52,7 @@
document.getElementById('call').style.visibility = 'visible';
inc = contract.Incremented({odd: true}, update);
}
});
};