Created
July 16, 2016 14:53
-
-
Save tjade273/acb0d443592287d4f2fc44955e126854 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
contract SplitFunds { | |
function split(address[] addrs){ | |
if(!addrs[uint(block.blockhash(block.number-1)) % addrs.length].send(msg.value)) throw; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm planning on using this technique in a dapp that'll reference my fork oracle for the condition check.
EDIT: Ah, I see there's already a splitter that uses Timon Rapp's oracle. No biggie.