Common errors you may have while writing smart contracts with Solidity
If you are writing an smart contract you absolutely don't want to have any errors in it that might compromise your project. Here I'll introduce some of the most common mistakes people make while coding with Solidity. Syntax errors Like all programing languages, syntax errors are common mistakes, specially for programers inexperienced in that particular language. You will get the hang of it if you practice enough. Example: missing a semi-colon. No defining a function's type All functions need a type to determine their scope and what they can manipulate and have access to.