oyente
oyente copied to clipboard
Flag CALLCODE as deprecated and suggest CALL/DELEGATECALL
CALLCODE is now deprecated and unsafe due to bug in implementation. People are advised to use CALL or DELEGATECALL instead.
https://solidity.readthedocs.io/en/v0.4.21/contracts.html
Libraries
Libraries are similar to contracts, but their purpose is that they are deployed only once at a specific address and their code is reused using the DELEGATECALL (CALLCODE until Homestead) feature of the EVM.
Will add this soon