diff options
author | chriseth <chris@ethereum.org> | 2017-08-16 17:32:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-16 17:32:02 +0800 |
commit | 83561e136c992287211f348e0b7bd85b8087fe23 (patch) | |
tree | 7ce774cfc519459fae9e49970aa2331e19be1e99 | |
parent | 80f83169b120eab72850842b4c6f39829989a0d8 (diff) | |
parent | 2021508653bd6b8159685060d6830cdf3592f8a3 (diff) | |
download | dexon-solidity-83561e136c992287211f348e0b7bd85b8087fe23.tar.gz dexon-solidity-83561e136c992287211f348e0b7bd85b8087fe23.tar.zst dexon-solidity-83561e136c992287211f348e0b7bd85b8087fe23.zip |
Merge pull request #2751 from eyezick/patch-1
Specify address as string on Events documentation
-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 93671691..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 /* address */); + var clientReceipt = ClientReceipt.at("0x1234...ab67" /* address */); var event = clientReceipt.Deposit(); |