This commit is contained in:
Marek Kotewicz 2015-07-07 11:30:19 +02:00
parent 2164fbb958
commit 368b1b56aa
5 changed files with 8 additions and 10 deletions

5
dist/web3-light.js vendored
View File

@ -1853,11 +1853,10 @@ var checkForContractAddress = function(contract, callback){
contract.address = receipt.contractAddress;
if(callback) {
if(callback)
callback(null, contract);
}
} else {
} else if(callback) {
callback(new Error('The contract code couldn\'t be stored'));
}

File diff suppressed because one or more lines are too long

5
dist/web3.js vendored
View File

@ -1853,11 +1853,10 @@ var checkForContractAddress = function(contract, callback){
contract.address = receipt.contractAddress;
if(callback) {
if(callback)
callback(null, contract);
}
} else {
} else if(callback) {
callback(new Error('The contract code couldn\'t be stored'));
}

4
dist/web3.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/web3.min.js vendored

File diff suppressed because one or more lines are too long