module Ethereum.Analyzer.Solidity.Finding ( findingsFor ) where import Protolude import Ethereum.Analyzer.Solidity.Foreach import Ethereum.Analyzer.Solidity.Simple findingsFor :: Contract -> [Text] findingsFor = selfdestruct selfdestruct :: Contract -> [Text] selfdestruct c = concatMap sdExp $ expressionsOf c where sdExp e = case e of ExpCall (JustId (Idfr "suicide")) _ -> ["Prefer 'selfdestruct' over 'suicide'."] _ -> []