good morning!!!!

Skip to content
Snippets Groups Projects
Commit 70bf1a57 authored by Marek Kotewicz's avatar Marek Kotewicz
Browse files

fixed typos

parent bacc5aa6
No related branches found
No related tags found
No related merge requests found
......@@ -38,12 +38,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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment