style guide: Use emit keyword when emitting events

This commit is contained in:
Kamil Śliwak 2023-09-15 14:54:07 +02:00
parent 3141b343a9
commit aad10bda97

View File

@ -233,7 +233,7 @@ Yes:
bytes32[] options bytes32[] options
); );
LongAndLotsOfArgs( emit LongAndLotsOfArgs(
sender, sender,
recipient, recipient,
publicKey, publicKey,
@ -251,7 +251,7 @@ No:
uint256 amount, uint256 amount,
bytes32[] options); bytes32[] options);
LongAndLotsOfArgs(sender, emit LongAndLotsOfArgs(sender,
recipient, recipient,
publicKey, publicKey,
amount, amount,