-
Notifications
You must be signed in to change notification settings - Fork 89
/
mine.py
45 lines (33 loc) · 1.14 KB
/
mine.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import hashlib
import struct
import time
# block 272784
# http://blockexplorer.com/block/0000000000000003ce284b6b4244552242e8e64efc2df1bdadb93f392ade1a35
ver = 2
prev_block = "000000000000000027d4d014f6245170390ea904cec17d1761021d28049c20b9"
mrkl_root = "57ebfd5b7fed40fc07120b1b03550ea1069d74b2dfc8cf81dc25bb48cee4221f"
time_ = 1389075720 # Mon Jan 06 22:22:00 2014
bits = 419628831
p = ''
# https://en.bitcoin.it/wiki/Difficulty
exp = bits >> 24
mant = bits & 0xffffff
target = mant * (1<<(8*(exp - 3)))
target_hexstr = '%064x' % target
print target_hexstr
target_str = target_hexstr.decode('hex')
print repr(target_str)
nonce = 100000000
while 1:
nonce += 1
header = ( struct.pack("<L", ver) + prev_block.decode('hex')[::-1] +
mrkl_root.decode('hex')[::-1] + struct.pack("<LLL", time_, bits, nonce))
hash = hashlib.sha256(hashlib.sha256(header).digest()).digest()
if nonce == 0:
print nonce, hash[::-1].encode('hex_codec')
if hash[::-1].encode('hex_codec').startswith(p):
print nonce, hash[::-1].encode('hex_codec')
p += '0'
if hash[::-1] < target_str:
print 'done', nonce
break