warning:`use of "block.blockhash": "block.blockhash" is used to access the last 256 block hashes. A miner computes the block hash by "summing up" the information in the current block mined. By "summing up" the information in a clever way a miner can try to influence the outcome of a transaction in the current block. This is especially easy if there are only a small number of equally likely outcomes.`,
warning:`use of "block.blockhash": "block.blockhash" is used to access the last 256 block hashes.
warning:`use of "now": "now" does not mean current time. Now is an alias for block.timestamp. Block.timestamp can be influenced by miners to a certain degree, be careful.`,
warning:`use of "now": "now" does not mean current time. Now is an alias for block.timestamp.
warning:`use of "block.timestamp": "block.timestamp" can be influenced by miners to a certain degree. That means that a miner can "choose" the block.timestamp, to a certain degree, to change the outcome of a transaction in the mined block.`,
warning:`use of "block.timestamp": "block.timestamp" can be influenced by miners to a certain degree.
warning:`CAUTION: The Contract uses inline assembly, this is only advised in rare cases. Additionally static analysis modules do not parse inline Assembly, this can lead to wrong analysis results.`,
warning:`CAUTION: The Contract uses inline assembly, this is only advised in rare cases.
@ -25,21 +25,30 @@ lowLevelCalls.prototype.report = function (compilationResults) {
varmorehref=null
switch(item.type){
casecommon.lowLevelCallTypes.CALL:
text=`use of "call": the use of low level "call" should be avoided whenever possible. It can lead to unexpected behavior if return value is not handled properly. Please use Direct Calls via specifying the called contract's interface.<br />`
text=`use of "callcode": the use of low level "callcode" should be avoided whenever possible. External code that is called can change the state of the calling contract and send ether form the caller's balance. If this is wantend behaviour use the Solidity library feature if possible.<br />`
text=`use of "delegatecall": the use of low level "delegatecall" should be avoided whenever possible. External code that is called can change the state of the calling contract and send ether form the caller's balance. If this is wantend behaviour use the Solidity library feature if possible.<br />`
text=`use of "send": "send" does not throw an exception when not successful, make sure you deal with the failure case accordingly. Use "transfer" whenever failure of the ether transfer should rollback the whole transaction. Note: if you "send/transfer" ether to a contract the fallback function is called, the callees fallback function is very limited due to the limited amount of gas provided by "send/transfer". No state changes are possible but the callee can log the event or revert the transfer. "send/transfer" is syntactic sugar for a "call" to the fallback function with 2300 gas and a specified ether value. <br />`
warning:`Use of "this" for local functions: Never use this to call functions in the same contract, it only consumes more gas than normal local calls.`,
warning:'Use of "this" for local functions: Never use this to call functions in the same contract, it only consumes more gas than normal local calls.',