updated "deposit" method description, updated icap example contract abi

This commit is contained in:
Marek Kotewicz 2015-05-26 21:00:21 +02:00
parent fbb9a41bec
commit b19e46c0d3
6 changed files with 9 additions and 9 deletions

2
dist/web3-light.js vendored
View File

@ -4032,7 +4032,7 @@ var transferToAddress = function (from, address, value, callback) {
};
/**
* Should be used to deposit funds in ClientReceipt contract
* Should be used to deposit funds to generic Exchange contract (must implement deposit(bytes32) method!)
*
* @method deposit
* @param {String} address

File diff suppressed because one or more lines are too long

2
dist/web3.js vendored
View File

@ -4032,7 +4032,7 @@ var transferToAddress = function (from, address, value, callback) {
};
/**
* Should be used to deposit funds in ClientReceipt contract
* Should be used to deposit funds to generic Exchange contract (must implement deposit(bytes32) method!)
*
* @method deposit
* @param {String} address

2
dist/web3.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -17,17 +17,17 @@
"inputs" : [
{
"indexed" : true,
"name" : "_from",
"name" : "from",
"type" : "address"
},
{
"indexed" : false,
"name" : "_id",
"indexed" : true,
"name" : "to",
"type" : "bytes32"
},
{
"indexed" : false,
"name" : "_value",
"name" : "value",
"type" : "uint256"
}
],

View File

@ -73,7 +73,7 @@ var transferToAddress = function (from, address, value, callback) {
};
/**
* Should be used to deposit funds in ClientReceipt contract
* Should be used to deposit funds to generic Exchange contract (must implement deposit(bytes32) method!)
*
* @method deposit
* @param {String} address