Double Trouble 2Double Trouble 2 is a very simple game. Someone begins with an arbitrary amount (at least 0.05 btc), for example 0.10 btc. The next one in the game can send also an arbitrary amount. The first gets double his amount if the total amount after the entry is double his amount. Then the next one can get double his money and so on! This continues until 7 days after the last double!
Note: You don't have to double the previous amount.Steps1. Send at least 0.05 btc to
1L5XmYTMvJ5chaMoYRybX6grpMGVYhbJcn
Watch:
http://blockexplorer.com/address/1L5XmYTMvJ5chaMoYRybX6grpMGVYhbJcn2. Wait (or promote this game) until someone else plays and double your money within 7 days!
- Excluding transaction fee and 1% fee
- Don't use EWallet
Open source! (Python)
tickets = [
['1EPd8DM5vQ3UvQY6Yr4bcYk13a4XsBnwz3', 5],
['1EnvHJgQh7WGPpnL686RDQFW6FEeznTbkB', 10],
['1tqwh6iBYk7F7gcVQ7PKuamf1PR4QgbgF', 20],
['1HvsWwqqtc775XM2iYHjAoekpzH3dptVNr', 41],
['1JosHcP8sVeBCdonMDSaZfS6cb9Ub46cmJ', 40],
['1FZ8tW5wjh1EDFsztSQYtpkxsa1C79GvZX', 125],
['1DpL7b8XBE7N2FecL6GGMtSRVUyBKC6Rd3', 251],
['16Uox1JKSqfe5LpWpm5TVVqdCcqBiybfgP', 5],
['19xRS9cz3m8YXnf83eWe2vHRL1skgixJre', 20],
['1FdtJayHR5qWJ67RAhGDjgedVKjFSHSKad', 75],
['1BUN1vb6r6fz1peafNrptCtMuRwVq8aNKo', 5],
['1AiqDfTWsT2wiu9JqgFJaCYpJZ5XBMGRPy', 50],
['12DnFV5JeeD8oBeVd17hkqZCaAnKzWeoNp', 15],
['17r7ALUqoKQ3d8MpQ8QBTfqiEoQMiztRDh', 20],
['1HvsWwqqtc775XM2iYHjAoekpzH3dptVNr', 50],
['1QKVV9BHmZNJkMCUNyssYX1BimzXZ72dQP', 125],
['1NV8i5tQGysjogJZcZ2mAQkf6NsT4ccw2Q', 100],
['19oR5xAYaASPtPxgaV3BuQTCn7Dh9Wrzqw', 40],
['17CNzobc24LRVJq3gCQd9QnWLdpDCoXxNU', 20],
['1582JDAsVa7Az7Y6EDQF8GKMV6mg1P45Cd', 100],
['1Gky6cMJbc2cnVeN3XRneEnrf2AkbLKxZ5', 27],
['1LBYhr4Nqjk2fRYmmbsgqd5bu5ZmfJhFot', 17],
['1KrgjdHmwmVcEWjjeucbsy4EZKQeegGVPx', 10],
['1B2hyCyBMoxTfCmdkMGEmHBd6RjC6H3QoS', 10],
['18Efa3oHTiiVp3DUo1PZqZk5E1wvfvTWRM', 8],
['1GSpia2fLLu9BqWeTq1je7o4HnTdBVWRAD', 34],
['1jm7dK6WVtLYLvwZ3tj8spUUgtgZTyPSR', 40],
['1PkNeHAtxzojKWxDphiEhQxP6xzbGGXiv3', 100],
['1AeCTNhF3Sovi8fkjq7Buy8sYoc2C4xoo4', 752],
]
result = []
total = 0
wanted = tickets[0][1] * 2
index = 0
for i in range(1,len(tickets)):
total += tickets[i][1]
while (total >= wanted):
print (tickets[index][0], wanted)
total = total - wanted
index = index +1
wanted = tickets[index][1] * 2
print(str(wanted - total) + " cents to go for next double")