diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-15 18:40:04 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-15 18:40:04 +0800 |
commit | d0473d6d83b96986073fca115154177166fa3dbb (patch) | |
tree | 065e4dc76abecde9ec05642b0d5aa0ff0469b85c /dist/ethereum.js | |
parent | 70bf1a57113381d33bb26f0d8839f1dacc6fa303 (diff) | |
download | dexon-d0473d6d83b96986073fca115154177166fa3dbb.tar dexon-d0473d6d83b96986073fca115154177166fa3dbb.tar.gz dexon-d0473d6d83b96986073fca115154177166fa3dbb.tar.bz2 dexon-d0473d6d83b96986073fca115154177166fa3dbb.tar.lz dexon-d0473d6d83b96986073fca115154177166fa3dbb.tar.xz dexon-d0473d6d83b96986073fca115154177166fa3dbb.tar.zst dexon-d0473d6d83b96986073fca115154177166fa3dbb.zip |
gulp
Diffstat (limited to 'dist/ethereum.js')
-rw-r--r-- | dist/ethereum.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/ethereum.js b/dist/ethereum.js index 2ce1346b4..204eb0dde 100644 --- a/dist/ethereum.js +++ b/dist/ethereum.js @@ -443,12 +443,12 @@ var ETH_METHOD_SIGNATURE_LENGTH = 4; * var abi = [{ * name: 'myMethod', * inputs: [{ name: 'a', type: 'string' }], - * outputs: [{name 'd', type: 'string' }] + * outputs: [{name: 'd', type: 'string' }] * }]; // contract abi * * var myContract = web3.eth.contract('0x0123123121', abi); // creation of contract object * - * myContract.myMethod('this is test string param for call').cal(); // myMethod call + * myContract.myMethod('this is test string param for call').call(); // myMethod call * myContract.myMethod('this is test string param for transact').transact() // myMethod transact * * @param address - address of the contract, which should be called |