1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-07 07:16:42 +02:00

Merge pull request #3092 from nemild/make-event-consistent

[solidity/en] Make event name consistent, remove trailing spaces
This commit is contained in:
Pratik Karki
2018-05-31 23:55:43 +05:45
committed by GitHub

View File

@@ -399,11 +399,11 @@ function depositEther() public payable {
event LogSent(address indexed from, address indexed to, uint amount); // note capital first letter
// Call
Sent(from, to, amount);
LogSent(from, to, amount);
// For an external party (a contract or external entity), to watch using
// the Web3 Javascript library:
Coin.Sent().watch({}, '', function(error, result) {
Coin.LogSent().watch({}, '', function(error, result) {
if (!error) {
console.log("Coin transfer: " + result.args.amount +
" coins were sent from " + result.args.from +