Merge pull request #10823 from DmytroShalaiev/DmytroShalaiev-events-doc-fix

Update events doc
This commit is contained in:
chriseth 2021-01-19 23:37:43 +01:00 committed by GitHub
commit 1df284733e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,10 +93,10 @@ The use in the JavaScript API is as follows:
var ClientReceipt = web3.eth.contract(abi); var ClientReceipt = web3.eth.contract(abi);
var clientReceipt = ClientReceipt.at("0x1234...ab67" /* address */); var clientReceipt = ClientReceipt.at("0x1234...ab67" /* address */);
var event = clientReceipt.Deposit(); var depositEvent = clientReceipt.Deposit();
// watch for changes // watch for changes
event.watch(function(error, result){ depositEvent.watch(function(error, result){
// result contains non-indexed arguments and topics // result contains non-indexed arguments and topics
// given to the `Deposit` call. // given to the `Deposit` call.
if (!error) if (!error)
@ -105,7 +105,7 @@ The use in the JavaScript API is as follows:
// Or pass a callback to start watching immediately // Or pass a callback to start watching immediately
var event = clientReceipt.Deposit(function(error, result) { var depositEvent = clientReceipt.Deposit(function(error, result) {
if (!error) if (!error)
console.log(result); console.log(result);
}); });