diff options
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 68905fa4..42c716d5 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -44,7 +44,7 @@ API, this is done as follows:: var MyContract = web3.eth.contract(abiArray); // deploy new contract var contractInstance = MyContract.new( - 10, + 10, 11, {from: myAccount, gas: 1000000} ); |