milk-contract-stubbed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.6; | |
contract MilkProcurement { | |
bool public outOfMilk = false; | |
address public milkOutageNotifier; | |
address public milkOutageVerifier; | |
address public milkGetter; | |
address public milkVerifier; | |
uint milkBarcode; | |
mapping (address => uint) public snTokenBalances; | |
event Notification(string message); | |
function recordMilkOutage() { ... } | |
function verifyMilkOutage() { ... } | |
function recordGotMilk(uint _milkBarcode) { ... } | |
function verifyGotMilk(uint _milkBarcode) { ... } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment