Open sujithsomraaj opened 5 months ago
Hi @sujithsomraaj ,
I think since Solidity v0.8.8 it is not required anymore to add override
keyword if only one interface function is implemented:
https://github.com/ethereum/solidity/releases/tag/v0.8.8
I would therefore vote to close this issue without further action.
@ezynda3 if you agree, could you please close this issue?
I agree. Since it's not coming from an abstract contract and not really overriding any real logic we can omit the override
I think.
Context: ReceiverStargateV2.sol#L83
Description: The function
lzCompose
inReceiverStargateV2
overrides the implementation inILayerZeroComposer,
which the later contract imports. However, the function fails to add theoverride
keyword.Recommendation: Add the missing
override
keyword to improve code quality.LI.FI:
Researcher: