bosonprotocol / contracts

[DEPRECATED] Boson Protocol v1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inexistent Event Emission

hswopeams opened this issue · comments

TRY-01S: Inexistent Event Emission

Type Severity Location
Code Style Informational TokenRegistry.sol:L27

Description:

The ethLimit value is initialized during the constructor of the contract, however, the LogETHLimitChanged event is not emitted properly.

Example:

constructor() {
    ethLimit = 1 ether;
}

Recommendation:

We advise it to be emitted akin to how other contracts in the system operate.