Skip to content

Instantly share code, notes, and snippets.

@montyanderson
Created June 15, 2017 00:19
Show Gist options
  • Save montyanderson/2031fb5ca909e8b59f9caae8106457e9 to your computer and use it in GitHub Desktop.
Save montyanderson/2031fb5ca909e8b59f9caae8106457e9 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.10;
contract OliverDollar {
mapping(address => uint) balances;
function OliverDollar() {
balances[msg.sender] = 1000000;
}
function balanceOf(address owner) constant returns (uint256) {
return balances[owner];
}
function transfer(address to, uint256 value) {
if(balances[msg.sender] < value) {
throw;
}
balances[msg.sender] -= value;
balances[to] += value;
}
}
@Mynamejefffff
Copy link

Mynamejefffff commented Jun 15, 2017

WHERE MY DOLLAR

@Mynamejefffff
Copy link

I MADE YOU

@Mynamejefffff
Copy link

GIVE ME MY MONEY

@Mynamejefffff
Copy link

Mynamejefffff commented Jun 15, 2017

oliver dollar pump pump, will hit 1K by end of year

@Mynamejefffff
Copy link

Mynamejefffff commented Jun 15, 2017

Howdy Kripp, my name is Bill and I work in the meat industry. I'm getting pretty sick and tired of all the vegan propaganda you're spreading on this here github. You rave about the health benefits of becoming a leaf-muncher, but look at you! You're a pale, scrawny, hallowed-out husk of a man. Hell, you probably can't even lift up a hamburger with those pitiful arms of yours. If you don't stop hating on meat, I'm gonna come by in my truck and force-feed you my "giant sausage!"

@Mynamejefffff
Copy link

╰( ͡° ͜ʖ ͡° )つ──☆ ╰( ͡° ͜ʖ ͡° )つ──☆ ╰( ͡° ͜ʖ ͡° )つ──☆ ╰( ͡° ͜ʖ ͡° )つ──☆ ╰( ͡° ͜ʖ ͡° )つ──☆ ╰( ͡° ͜ʖ ͡° )つ──☆ ╰( ͡° ͜ʖ ͡° )つ──☆

@Mynamejefffff
Copy link

Monty abusing power ╰( ͡° ͜ʖ ͡° )つ──☆ removing comments unjustly ╰( ͡° ͜ʖ ͡° )つ──☆ what's new ╰( ͡° ͜ʖ ͡° )つ──☆

@Mynamejefffff
Copy link

Monty abusing power ╰( ͡° ͜ʖ ͡° )つ──☆ removing comments unjustly ╰( ͡° ͜ʖ ͡° )つ──☆ what's new ╰( ͡° ͜ʖ ͡° )つ──☆

@Mynamejefffff
Copy link

Monty abusing power ╰( ͡° ͜ʖ ͡° )つ──☆ removing comments unjustly ╰( ͡° ͜ʖ ͡° )つ──☆ what's new ╰( ͡° ͜ʖ ͡° )つ──☆

@Mynamejefffff
Copy link

Monty abusing power ╰( ͡° ͜ʖ ͡° )つ──☆ removing comments unjustly ╰( ͡° ͜ʖ ͡° )つ──☆ what's new ╰( ͡° ͜ʖ ͡° )つ──☆

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment