aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-08-16 17:31:50 +0800
committerGitHub <noreply@github.com>2017-08-16 17:31:50 +0800
commit2021508653bd6b8159685060d6830cdf3592f8a3 (patch)
tree7ce774cfc519459fae9e49970aa2331e19be1e99 /docs
parent2dc9e53a4987f8b7c5ed6dd33e71a0185e41d5d7 (diff)
downloaddexon-solidity-2021508653bd6b8159685060d6830cdf3592f8a3.tar
dexon-solidity-2021508653bd6b8159685060d6830cdf3592f8a3.tar.gz
dexon-solidity-2021508653bd6b8159685060d6830cdf3592f8a3.tar.bz2
dexon-solidity-2021508653bd6b8159685060d6830cdf3592f8a3.tar.lz
dexon-solidity-2021508653bd6b8159685060d6830cdf3592f8a3.tar.xz
dexon-solidity-2021508653bd6b8159685060d6830cdf3592f8a3.tar.zst
dexon-solidity-2021508653bd6b8159685060d6830cdf3592f8a3.zip
Update contracts.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/contracts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 5683ba77..7b972e17 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -626,7 +626,7 @@ The use in the JavaScript API would be as follows:
var abi = /* abi as generated by the compiler */;
var ClientReceipt = web3.eth.contract(abi);
- var clientReceipt = ClientReceipt.at("0x123" /* string of address */);
+ var clientReceipt = ClientReceipt.at("0x1234...ab67" /* address */);
var event = clientReceipt.Deposit();