Skip to content

Instantly share code, notes, and snippets.

View mayorcoded's full-sized avatar
🎯
Focusing

Mayowa Tudonu mayorcoded

🎯
Focusing
View GitHub Profile
@mayorcoded
mayorcoded / FoodCart.js
Last active October 30, 2018 03:26
This is the FoodCart smart contract for the article: Debugging smart contracts with Truffle Debugger published here (https://www.mayowatudonu.com/blockchain/debugging-smartcontracts-with-truffle-debugger)
pragma solidity ^0.4.24;
contract FoodCart{
/* set owner of contract */
address owner;
/* a variable to track the most recent sku of a food item */
uint8 skuCount;
/* an enum to store food item state */