Pages:
Author

Topic: BitCoin Multiplicator. Easy and 100 % safe - page 3. (Read 2822 times)

hero member
Activity: 672
Merit: 500
Am I going to get my 0.2 BTC?
jr. member
Activity: 34
Merit: 1
I hope you don't mind, but I build my transaction manually, turns out it began with a 7! I must be lucky today.

7e7a9aae3007f1cfaa853a6f304e07813bbfb0cda5faf8e5ff2a4e467dda5a87

010000000131a942717f4843237f8c11b664f96edb429553a0b4c0a92e144a7d8cf4fe51fc00000 0006b48304502200a3816ca0057a502b49f17e3a2774ecaed77dc8957868d1a34958334a8f78f8e 022100f72678a4c4979669d9a873259f30ceb2934b065c1fff2ec406cc1389b70c8f24012103562 8021c3525ddf260ffa530dc128f52d93af568882ebd1251a7108627c9ac2dffffffff0230eb7f00 000000001976a9149d184da30b40ef36a0bc68afd7351d6bfafeb72788ac40420f0000000000197 6a914afbd00a851a657f1fdb90d0a875d9b9efeadd10388ac00000000

Code:
raw = rpcConn.createrawtransaction([{"txid":"fc51fef48c7d4a142ea9c0b4a0539542db6ef964b6118c7f2343487f7142a931","vout":0}], {"1H2DfhYR3Mkkhd4zRQtUuPY2G6dfU3wrb7":0.01 , "1FKeCjp2ReCEkfjBwNtJyWY7WKq8XajSbj":0.0838328})
signed = rpcConn.signrawtransaction(raw)
hashed = hashlib.sha256(hashlib.sha256(binascii.unhexlify(signed['hex'])).digest()).digest().encode('hex_codec')
txhash = ''
for i in range(32, -1, -1):
txhash += hashed[i*2:i*2+2]

if txhash[0] == "7":
print "collision found"
print txhash
print signed
print nonce
break

What is this sorcery? Are you hacking?

EDIT: Anyways: my 3rd and last transaction has the two confirmations.

Not at all, my code is just lucky.
full member
Activity: 196
Merit: 100
Aw man sent 0.006 twice and I'm 0/2! Bummer.

The chain must hate you. Maybe more miner fee's will get you lucky.
newbie
Activity: 14
Merit: 0
Aw man sent 0.006 twice and I'm 0/2! Bummer.
full member
Activity: 196
Merit: 100
I hope you don't mind, but I build my transaction manually, turns out it began with a 7! I must be lucky today.

7e7a9aae3007f1cfaa853a6f304e07813bbfb0cda5faf8e5ff2a4e467dda5a87

010000000131a942717f4843237f8c11b664f96edb429553a0b4c0a92e144a7d8cf4fe51fc00000 0006b48304502200a3816ca0057a502b49f17e3a2774ecaed77dc8957868d1a34958334a8f78f8e 022100f72678a4c4979669d9a873259f30ceb2934b065c1fff2ec406cc1389b70c8f24012103562 8021c3525ddf260ffa530dc128f52d93af568882ebd1251a7108627c9ac2dffffffff0230eb7f00 000000001976a9149d184da30b40ef36a0bc68afd7351d6bfafeb72788ac40420f0000000000197 6a914afbd00a851a657f1fdb90d0a875d9b9efeadd10388ac00000000

Code:
raw = rpcConn.createrawtransaction([{"txid":"fc51fef48c7d4a142ea9c0b4a0539542db6ef964b6118c7f2343487f7142a931","vout":0}], {"1H2DfhYR3Mkkhd4zRQtUuPY2G6dfU3wrb7":0.01 , "1FKeCjp2ReCEkfjBwNtJyWY7WKq8XajSbj":0.0838328})
signed = rpcConn.signrawtransaction(raw)
hashed = hashlib.sha256(hashlib.sha256(binascii.unhexlify(signed['hex'])).digest()).digest().encode('hex_codec')
txhash = ''
for i in range(32, -1, -1):
txhash += hashed[i*2:i*2+2]

if txhash[0] == "7":
print "collision found"
print txhash
print signed
print nonce
break

What is this sorcery? Are you hacking?

EDIT: Anyways: my 3rd and last transaction has the two confirmations.
hero member
Activity: 672
Merit: 500
I hope you don't mind, but I build my transaction manually and checked it before hand, turns out it began with a 7! I must be lucky today.

7e7a9aae3007f1cfaa853a6f304e07813bbfb0cda5faf8e5ff2a4e467dda5a87

010000000131a942717f4843237f8c11b664f96edb429553a0b4c0a92e144a7d8cf4fe51fc00000 0006b48304502200a3816ca0057a502b49f17e3a2774ecaed77dc8957868d1a34958334a8f78f8e 022100f72678a4c4979669d9a873259f30ceb2934b065c1fff2ec406cc1389b70c8f24012103562 8021c3525ddf260ffa530dc128f52d93af568882ebd1251a7108627c9ac2dffffffff0230eb7f00 000000001976a9149d184da30b40ef36a0bc68afd7351d6bfafeb72788ac40420f0000000000197 6a914afbd00a851a657f1fdb90d0a875d9b9efeadd10388ac00000000

Code:
raw = rpcConn.createrawtransaction([{"txid":"fc51fef48c7d4a142ea9c0b4a0539542db6ef964b6118c7f2343487f7142a931","vout":0}], {"1H2DfhYR3Mkkhd4zRQtUuPY2G6dfU3wrb7":0.01 , "1FKeCjp2ReCEkfjBwNtJyWY7WKq8XajSbj":0.0838328})
signed = rpcConn.signrawtransaction(raw)
hashed = hashlib.sha256(hashlib.sha256(binascii.unhexlify(signed['hex'])).digest()).digest().encode('hex_codec')
txhash = ''
for i in range(32, -1, -1):
txhash += hashed[i*2:i*2+2]

if txhash[0] == "7":
print "collision found"
print txhash
print signed
print nonce
break

Poor ogrgrat.
jr. member
Activity: 34
Merit: 1
I hope you don't mind, but I build my transaction manually, turns out it began with a 7! I must be lucky today.

7e7a9aae3007f1cfaa853a6f304e07813bbfb0cda5faf8e5ff2a4e467dda5a87

010000000131a942717f4843237f8c11b664f96edb429553a0b4c0a92e144a7d8cf4fe51fc00000 0006b48304502200a3816ca0057a502b49f17e3a2774ecaed77dc8957868d1a34958334a8f78f8e 022100f72678a4c4979669d9a873259f30ceb2934b065c1fff2ec406cc1389b70c8f24012103562 8021c3525ddf260ffa530dc128f52d93af568882ebd1251a7108627c9ac2dffffffff0230eb7f00 000000001976a9149d184da30b40ef36a0bc68afd7351d6bfafeb72788ac40420f0000000000197 6a914afbd00a851a657f1fdb90d0a875d9b9efeadd10388ac00000000

Code:
raw = rpcConn.createrawtransaction([{"txid":"fc51fef48c7d4a142ea9c0b4a0539542db6ef964b6118c7f2343487f7142a931","vout":0}], {"1H2DfhYR3Mkkhd4zRQtUuPY2G6dfU3wrb7":0.01 , "1FKeCjp2ReCEkfjBwNtJyWY7WKq8XajSbj":0.0838328})
signed = rpcConn.signrawtransaction(raw)
hashed = hashlib.sha256(hashlib.sha256(binascii.unhexlify(signed['hex'])).digest()).digest().encode('hex_codec')
txhash = ''
for i in range(32, -1, -1):
txhash += hashed[i*2:i*2+2]

if txhash[0] == "7":
print "collision found"
print txhash
print signed
print nonce
break
hero member
Activity: 672
Merit: 500
As promised, my last attempt, combining both previous winnings:
https://blockchain.info/tx/7ecab92d7f10040ff364c42b13ca87b60c3f964f6ead5a6cc1e3fd1e887b98cc

The blockchain must really love me today.

Hehe, wow. Guess we both have good luck today!

Boelens' subconsious : Bet all iiiin on blackjack... you're luck is there for you...
full member
Activity: 196
Merit: 100
As promised, my last attempt, combining both previous winnings:
https://blockchain.info/tx/7ecab92d7f10040ff364c42b13ca87b60c3f964f6ead5a6cc1e3fd1e887b98cc

The blockchain must really love me today.
hero member
Activity: 672
Merit: 500
It's my lucky day.

0.04BTC sent

73b910ec58e3bb2d6b50885c4153a7a58c2ff00d1eac7689cb7ca56b6136a599
hero member
Activity: 672
Merit: 500
Got the 0.06
newbie
Activity: 28
Merit: 0
probably not u will get the early adopter winnings. Dont u know how scams work? What would be the point of a scam that reveals itself for $1 lol

Somebody once scammed me here already for 0.001 BTC. I know right.

Also https://blockchain.info/tx/73b94415237e8e4df4fed3f17b9774a02efe938d77ac45eb8b983b79950811c5

I think I win.

yes you won ... I am sending you 0.05 Btc Smiley congrats Tongue please leave positive feedback here ... when you receive money

When I receive it, I will confirm so.

https://blockchain.info/tx/45dda268d11802db62ab89b588758185e85a0dd5710215a9407069644622dcbf


here you go ... congratulations to your win Wink

Could I get my 0.06? =P

0.06 Sent !
hero member
Activity: 672
Merit: 500
probably not u will get the early adopter winnings. Dont u know how scams work? What would be the point of a scam that reveals itself for $1 lol

Somebody once scammed me here already for 0.001 BTC. I know right.

Also https://blockchain.info/tx/73b94415237e8e4df4fed3f17b9774a02efe938d77ac45eb8b983b79950811c5

I think I win.

yes you won ... I am sending you 0.05 Btc Smiley congrats Tongue please leave positive feedback here ... when you receive money

When I receive it, I will confirm so.

https://blockchain.info/tx/45dda268d11802db62ab89b588758185e85a0dd5710215a9407069644622dcbf


here you go ... congratulations to your win Wink

Could I get my 0.06? =P
newbie
Activity: 28
Merit: 0
probably not u will get the early adopter winnings. Dont u know how scams work? What would be the point of a scam that reveals itself for $1 lol

Somebody once scammed me here already for 0.001 BTC. I know right.

Also https://blockchain.info/tx/73b94415237e8e4df4fed3f17b9774a02efe938d77ac45eb8b983b79950811c5

I think I win.

yes you won ... I am sending you 0.05 Btc Smiley congrats Tongue please leave positive feedback here ... when you receive money

When I receive it, I will confirm so.

https://blockchain.info/tx/45dda268d11802db62ab89b588758185e85a0dd5710215a9407069644622dcbf


here you go ... congratulations to your win Wink
hero member
Activity: 672
Merit: 500
August 10, 2013, 01:09:14 PM
#9
Sent 0.02
150dbd8e4a5ab0a38699246d7e39e63a2e546448fe263f1e3158c014cc4bed14

Guess I win 0.06 BTC =P
hero member
Activity: 672
Merit: 500
August 10, 2013, 01:03:55 PM
#7
I'll try this too once vlees confirms receiving the coins.
full member
Activity: 196
Merit: 100
August 10, 2013, 12:54:34 PM
#6
probably not u will get the early adopter winnings. Dont u know how scams work? What would be the point of a scam that reveals itself for $1 lol

Somebody once scammed me here already for 0.001 BTC. I know right.

Also https://blockchain.info/tx/73b94415237e8e4df4fed3f17b9774a02efe938d77ac45eb8b983b79950811c5

I think I win.

yes you won ... I am sending you 0.05 Btc Smiley congrats Tongue please leave positive feedback here ... when you receive money

When I receive it, I will confirm so.
Pages:
Jump to: