don't use bitcoinrpc anymore
[electrum-server.git] / server.py
1 #!/usr/bin/env python
2 # Copyright(C) 2011 thomasv@gitorious
3
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as
6 # published by the Free Software Foundation, either version 3 of the
7 # License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public
15 # License along with this program.  If not, see
16 # <http://www.gnu.org/licenses/agpl.html>.
17
18 """
19 Todo:
20    * server should check and return bitcoind status..
21    * improve txpoint sorting
22    * command to check cache
23
24  mempool transactions do not need to be added to the database; it slows it down
25 """
26
27
28 import time, socket, operator, thread, ast, sys,re
29 import psycopg2, binascii
30
31 from Abe.abe import hash_to_address, decode_check_address
32 from Abe.DataStore import DataStore as Datastore_class
33 from Abe import DataStore, readconf, BCDataStream,  deserialize, util, base58
34
35 import ConfigParser
36 from json import dumps, loads
37 import urllib
38
39 config = ConfigParser.ConfigParser()
40 # set some defaults, which will be overwritten by the config file
41 config.add_section('server')
42 config.set('server','banner', 'Welcome to Electrum!')
43 config.set('server', 'host', 'localhost')
44 config.set('server', 'port', 50000)
45 config.set('server', 'password', '')
46 config.set('server', 'irc', 'yes')
47 config.set('server', 'cache', 'no') 
48 config.set('server', 'ircname', 'Electrum server')
49 config.add_section('database')
50 config.set('database', 'type', 'psycopg2')
51 config.set('database', 'database', 'abe')
52
53 try:
54     f = open('/etc/electrum.conf','r')
55     config.readfp(f)
56     f.close()
57 except:
58     print "Could not read electrum.conf. I will use the default values."
59
60 password = config.get('server','password')
61 bitcoind_url = 'http://%s:%s@%s:%s/' % ( config.get('bitcoind','user'), config.get('bitcoind','password'), config.get('bitcoind','host'), config.get('bitcoind','port'))
62
63 stopping = False
64 block_number = -1
65 sessions = {}
66 dblock = thread.allocate_lock()
67 peer_list = {}
68
69 wallets = {} # for ultra-light clients such as bccapi
70
71 class MyStore(Datastore_class):
72
73     def import_tx(self, tx, is_coinbase):
74         tx_id = super(MyStore, self).import_tx(tx, is_coinbase)
75         if config.get('server', 'cache') == 'yes': self.update_tx_cache(tx_id)
76
77     def update_tx_cache(self, txid):
78         inrows = self.get_tx_inputs(txid, False)
79         for row in inrows:
80             _hash = store.binout(row[6])
81             address = hash_to_address(chr(0), _hash)
82             if self.tx_cache.has_key(address):
83                 print "cache: invalidating", address
84                 self.tx_cache.pop(address)
85         outrows = self.get_tx_outputs(txid, False)
86         for row in outrows:
87             _hash = store.binout(row[6])
88             address = hash_to_address(chr(0), _hash)
89             if self.tx_cache.has_key(address):
90                 print "cache: invalidating", address
91                 self.tx_cache.pop(address)
92
93     def safe_sql(self,sql, params=(), lock=True):
94         try:
95             if lock: dblock.acquire()
96             ret = self.selectall(sql,params)
97             if lock: dblock.release()
98             return ret
99         except:
100             print "sql error", sql
101             return []
102
103     def get_tx_outputs(self, tx_id, lock=True):
104         return self.safe_sql("""SELECT
105                 txout.txout_pos,
106                 txout.txout_scriptPubKey,
107                 txout.txout_value,
108                 nexttx.tx_hash,
109                 nexttx.tx_id,
110                 txin.txin_pos,
111                 pubkey.pubkey_hash
112               FROM txout
113               LEFT JOIN txin ON (txin.txout_id = txout.txout_id)
114               LEFT JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
115               LEFT JOIN tx nexttx ON (txin.tx_id = nexttx.tx_id)
116              WHERE txout.tx_id = %d 
117              ORDER BY txout.txout_pos
118         """%(tx_id), (), lock)
119
120     def get_tx_inputs(self, tx_id, lock=True):
121         return self.safe_sql(""" SELECT
122                 txin.txin_pos,
123                 txin.txin_scriptSig,
124                 txout.txout_value,
125                 COALESCE(prevtx.tx_hash, u.txout_tx_hash),
126                 prevtx.tx_id,
127                 COALESCE(txout.txout_pos, u.txout_pos),
128                 pubkey.pubkey_hash
129               FROM txin
130               LEFT JOIN txout ON (txout.txout_id = txin.txout_id)
131               LEFT JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
132               LEFT JOIN tx prevtx ON (txout.tx_id = prevtx.tx_id)
133               LEFT JOIN unlinked_txin u ON (u.txin_id = txin.txin_id)
134              WHERE txin.tx_id = %d
135              ORDER BY txin.txin_pos
136              """%(tx_id,), (), lock)
137
138     def get_address_out_rows(self, dbhash):
139         return self.safe_sql(""" SELECT
140                 b.block_nTime,
141                 cc.chain_id,
142                 b.block_height,
143                 1,
144                 b.block_hash,
145                 tx.tx_hash,
146                 tx.tx_id,
147                 txin.txin_pos,
148                 -prevout.txout_value
149               FROM chain_candidate cc
150               JOIN block b ON (b.block_id = cc.block_id)
151               JOIN block_tx ON (block_tx.block_id = b.block_id)
152               JOIN tx ON (tx.tx_id = block_tx.tx_id)
153               JOIN txin ON (txin.tx_id = tx.tx_id)
154               JOIN txout prevout ON (txin.txout_id = prevout.txout_id)
155               JOIN pubkey ON (pubkey.pubkey_id = prevout.pubkey_id)
156              WHERE pubkey.pubkey_hash = ?
157                AND cc.in_longest = 1""", (dbhash,))
158
159     def get_address_out_rows_memorypool(self, dbhash):
160         return self.safe_sql(""" SELECT
161                 1,
162                 tx.tx_hash,
163                 tx.tx_id,
164                 txin.txin_pos,
165                 -prevout.txout_value
166               FROM tx 
167               JOIN txin ON (txin.tx_id = tx.tx_id)
168               JOIN txout prevout ON (txin.txout_id = prevout.txout_id)
169               JOIN pubkey ON (pubkey.pubkey_id = prevout.pubkey_id)
170              WHERE pubkey.pubkey_hash = ? """, (dbhash,))
171
172     def get_address_in_rows(self, dbhash):
173         return self.safe_sql(""" SELECT
174                 b.block_nTime,
175                 cc.chain_id,
176                 b.block_height,
177                 0,
178                 b.block_hash,
179                 tx.tx_hash,
180                 tx.tx_id,
181                 txout.txout_pos,
182                 txout.txout_value
183               FROM chain_candidate cc
184               JOIN block b ON (b.block_id = cc.block_id)
185               JOIN block_tx ON (block_tx.block_id = b.block_id)
186               JOIN tx ON (tx.tx_id = block_tx.tx_id)
187               JOIN txout ON (txout.tx_id = tx.tx_id)
188               JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
189              WHERE pubkey.pubkey_hash = ?
190                AND cc.in_longest = 1""", (dbhash,))
191
192     def get_address_in_rows_memorypool(self, dbhash):
193         return self.safe_sql( """ SELECT
194                 0,
195                 tx.tx_hash,
196                 tx.tx_id,
197                 txout.txout_pos,
198                 txout.txout_value
199               FROM tx
200               JOIN txout ON (txout.tx_id = tx.tx_id)
201               JOIN pubkey ON (pubkey.pubkey_id = txout.pubkey_id)
202              WHERE pubkey.pubkey_hash = ? """, (dbhash,))
203
204     def get_history(self, addr):
205         
206         if config.get('server','cache') == 'yes':
207             cached_version = self.tx_cache.get( addr ) 
208             if cached_version is not None: 
209                 return cached_version
210
211         version, binaddr = decode_check_address(addr)
212         if binaddr is None:
213             return None
214
215         dbhash = self.binin(binaddr)
216         rows = []
217         rows += self.get_address_out_rows( dbhash )
218         rows += self.get_address_in_rows( dbhash )
219
220         txpoints = []
221         known_tx = []
222
223         for row in rows:
224             try:
225                 nTime, chain_id, height, is_in, blk_hash, tx_hash, tx_id, pos, value = row
226             except:
227                 print "cannot unpack row", row
228                 break
229             tx_hash = self.hashout_hex(tx_hash)
230             txpoint = {
231                     "nTime":    int(nTime),
232                     #"chain_id": int(chain_id),
233                     "height":   int(height),
234                     "is_in":    int(is_in),
235                     "blk_hash": self.hashout_hex(blk_hash),
236                     "tx_hash":  tx_hash,
237                     "tx_id":    int(tx_id),
238                     "pos":      int(pos),
239                     "value":    int(value),
240                     }
241
242             txpoints.append(txpoint)
243             known_tx.append(self.hashout_hex(tx_hash))
244
245
246         # todo: sort them really...
247         txpoints = sorted(txpoints, key=operator.itemgetter("nTime"))
248
249         # read memory pool
250         rows = []
251         rows += self.get_address_in_rows_memorypool( dbhash )
252         rows += self.get_address_out_rows_memorypool( dbhash )
253         address_has_mempool = False
254
255         for row in rows:
256             is_in, tx_hash, tx_id, pos, value = row
257             tx_hash = self.hashout_hex(tx_hash)
258             if tx_hash in known_tx:
259                 continue
260
261             # this means that pending transactions were added to the db, even if they are not returned by getmemorypool
262             address_has_mempool = True
263
264             # this means pending transactions are returned by getmemorypool
265             if tx_hash not in self.mempool_keys:
266                 continue
267
268             #print "mempool", tx_hash
269             txpoint = {
270                     "nTime":    0,
271                     #"chain_id": 1,
272                     "height":   0,
273                     "is_in":    int(is_in),
274                     "blk_hash": 'mempool', 
275                     "tx_hash":  tx_hash,
276                     "tx_id":    int(tx_id),
277                     "pos":      int(pos),
278                     "value":    int(value),
279                     }
280             txpoints.append(txpoint)
281
282
283         for txpoint in txpoints:
284             tx_id = txpoint['tx_id']
285             
286             txinputs = []
287             inrows = self.get_tx_inputs(tx_id)
288             for row in inrows:
289                 _hash = self.binout(row[6])
290                 address = hash_to_address(chr(0), _hash)
291                 txinputs.append(address)
292             txpoint['inputs'] = txinputs
293             txoutputs = []
294             outrows = self.get_tx_outputs(tx_id)
295             for row in outrows:
296                 _hash = self.binout(row[6])
297                 address = hash_to_address(chr(0), _hash)
298                 txoutputs.append(address)
299             txpoint['outputs'] = txoutputs
300
301             # for all unspent inputs, I want their scriptpubkey. (actually I could deduce it from the address)
302             if not txpoint['is_in']:
303                 # detect if already redeemed...
304                 for row in outrows:
305                     if row[6] == dbhash: break
306                 else:
307                     raise
308                 #row = self.get_tx_output(tx_id,dbhash)
309                 # pos, script, value, o_hash, o_id, o_pos, binaddr = row
310                 # if not redeemed, we add the script
311                 if row:
312                     if not row[4]: txpoint['raw_scriptPubKey'] = row[1]
313
314         # cache result
315         if config.get('server','cache') == 'yes' and not address_has_mempool:
316             self.tx_cache[addr] = txpoints
317         
318         return txpoints
319
320
321
322
323 def send_tx(tx):
324     postdata = dumps({"method": 'importtransaction', 'params': [tx], 'id':'jsonrpc'})
325     respdata = urllib.urlopen(bitcoind_url, postdata).read()
326     try:
327         v = loads(respdata)['result']
328     except:
329         v = "error: transaction rejected by memorypool"
330     return v
331
332
333
334 def random_string(N):
335     import random, string
336     return ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(N))
337
338     
339
340 def cmd_stop(data):
341     global stopping
342     if password == data:
343         stopping = True
344         return 'ok'
345     else:
346         return 'wrong password'
347
348 def cmd_load(pw):
349     if password == pw:
350         return repr( len(sessions) )
351     else:
352         return 'wrong password'
353
354
355 def clear_cache(pw):
356     if password == pw:
357         store.tx_cache = {}
358         return 'ok'
359     else:
360         return 'wrong password'
361
362 def get_cache(pw,addr):
363     if password == pw:
364         return store.tx_cache.get(addr)
365     else:
366         return 'wrong password'
367
368
369 def cmd_poll(session_id):
370     session = sessions.get(session_id)
371     if session is None:
372         print time.asctime(), "session not found", session_id
373         out = repr( (-1, {}))
374     else:
375         t1 = time.time()
376         addresses = session['addresses']
377         session['last_time'] = time.time()
378         ret = {}
379         k = 0
380         for addr in addresses:
381             if store.tx_cache.get( addr ) is not None: k += 1
382
383             # get addtess status, i.e. the last block for that address.
384             tx_points = store.get_history(addr)
385             if not tx_points:
386                 status = None
387             else:
388                 lastpoint = tx_points[-1]
389                 status = lastpoint['blk_hash']
390                 # this is a temporary hack; move it up once old clients have disappeared
391                 if status == 'mempool' and session['version'] != "old":
392                     status = status + ':%d'% len(tx_points)
393
394             last_status = addresses.get( addr )
395             if last_status != status:
396                 addresses[addr] = status
397                 ret[addr] = status
398         if ret:
399             sessions[session_id]['addresses'] = addresses
400         out = repr( (block_number, ret ) )
401         t2 = time.time() - t1 
402         if t2 > 10:
403             print "high load:", session_id, "%d/%d"%(k,len(addresses)), t2
404
405         return out
406
407
408 def new_session(addresses, version, ipaddr):
409     session_id = random_string(10)
410
411     print time.strftime("[%d/%m/%Y-%H:%M:%S]"), "new session", ipaddr, addresses[0] if addresses else addresses, len(addresses), version
412
413     sessions[session_id] = { 'addresses':{}, 'version':version, 'ip':ipaddr }
414     for a in addresses:
415         sessions[session_id]['addresses'][a] = ''
416     out = repr( (session_id, config.get('server','banner').replace('\\n','\n') ) )
417     sessions[session_id]['last_time'] = time.time()
418     return out
419
420 def update_session(session_id,addresses,ipaddr):
421     print time.strftime("[%d/%m/%Y-%H:%M:%S]"), "update session", ipaddr, addresses[0] if addresses else addresses, len(addresses)
422     sessions[session_id]['addresses'] = {}
423     for a in addresses:
424         sessions[session_id]['addresses'][a] = ''
425     out = 'ok'
426     sessions[session_id]['last_time'] = time.time()
427
428
429 def listen_thread(store):
430     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
431     s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
432     s.bind((config.get('server','host'), config.getint('server','port')))
433     s.listen(1)
434     while not stopping:
435         conn, addr = s.accept()
436         thread.start_new_thread(client_thread, (addr, conn,))
437
438
439
440 def client_thread(ipaddr,conn):
441     #print "client thread", ipaddr
442     try:
443         ipaddr = ipaddr[0]
444         msg = ''
445         while 1:
446             d = conn.recv(1024)
447             msg += d
448             if not d: 
449                 break
450             if '#' in msg:
451                 msg = msg.split('#', 1)[0]
452                 break
453         try:
454             cmd, data = ast.literal_eval(msg)
455         except:
456             print "syntax error", repr(msg), ipaddr
457             conn.close()
458             return
459
460         out = do_command(cmd, data, ipaddr)
461         if out:
462             #print ipaddr, cmd, len(out)
463             try:
464                 conn.send(out)
465             except:
466                 print "error, could not send"
467
468     finally:
469         conn.close()
470
471
472 def do_command(cmd, data, ipaddr):
473
474     if cmd=='b':
475         out = "%d"%block_number
476
477     elif cmd in ['session','new_session']:
478         try:
479             if cmd == 'session':
480                 addresses = ast.literal_eval(data)
481                 version = "old"
482             else:
483                 version, addresses = ast.literal_eval(data)
484                 if version[0]=="0": version = "v" + version
485         except:
486             print "error", data
487             return None
488         out = new_session(addresses, version, ipaddr)
489
490     elif cmd=='update_session':
491         try:
492             session_id, addresses = ast.literal_eval(data)
493         except:
494             print "error"
495             return None
496         out = update_session(session_id,addresses,ipaddr)
497
498
499     elif cmd == 'bccapi_login':
500         import electrum
501         print "data",data
502         v, k = ast.literal_eval(data)
503         master_public_key = k.decode('hex') # todo: sanitize. no need to decode twice...
504         print master_public_key
505         wallet_id = random_string(10)
506         w = electrum.Wallet()
507         w.master_public_key = master_public_key.decode('hex')
508         w.synchronize()
509         wallets[wallet_id] = w
510         out = wallet_id
511         print "wallets", wallets
512
513     elif cmd == 'bccapi_getAccountInfo':
514         from electrum import int_to_hex
515         v, wallet_id = ast.literal_eval(data)
516         w = wallets.get(wallet_id)
517         if w is not None:
518             num = len(w.addresses)
519             c, u = w.get_balance()
520             out = int_to_hex(num,4) + int_to_hex(c,8) + int_to_hex( c+u, 8 )
521             out = out.decode('hex')
522         else:
523             print "error",data
524             out = "error"
525
526     elif cmd == 'bccapi_getAccountStatement':
527         from electrum import int_to_hex
528         v, wallet_id = ast.literal_eval(data)
529         w = wallets.get(wallet_id)
530         if w is not None:
531             num = len(w.addresses)
532             c, u = w.get_balance()
533             total_records = num_records = 0
534             out = int_to_hex(num,4) + int_to_hex(c,8) + int_to_hex( c+u, 8 ) + int_to_hex( total_records ) + int_to_hex( num_records )
535             out = out.decode('hex')
536         else:
537             print "error",data
538             out = "error"
539
540     elif cmd == 'bccapi_getSendCoinForm':
541         out = ''
542
543     elif cmd == 'bccapi_submitTransaction':
544         out = ''
545             
546     elif cmd=='poll': 
547         out = cmd_poll(data)
548
549     elif cmd == 'h': 
550         # history
551         address = data
552         out = repr( store.get_history( address ) )
553
554     elif cmd == 'load': 
555         out = cmd_load(data)
556
557     elif cmd =='tx':
558         out = send_tx(data)
559         print "sent tx:", out
560
561     elif cmd == 'stop':
562         out = cmd_stop(data)
563
564     elif cmd == 'peers':
565         out = repr(peer_list.values())
566
567     else:
568         out = None
569
570     return out
571
572
573
574
575 def memorypool_update(store):
576     ds = BCDataStream.BCDataStream()
577     store.mempool_keys = []
578
579     postdata = dumps({"method": 'getmemorypool', 'params': [], 'id':'jsonrpc'})
580     respdata = urllib.urlopen(bitcoind_url, postdata).read()
581     v = loads(respdata)['result']
582
583
584     v = v['transactions']
585     for hextx in v:
586         ds.clear()
587         ds.write(hextx.decode('hex'))
588         tx = deserialize.parse_Transaction(ds)
589         tx['hash'] = util.double_sha256(tx['tx'])
590         tx_hash = tx['hash'][::-1].encode('hex')
591         store.mempool_keys.append(tx_hash)
592         if store.tx_find_id_and_value(tx):
593             pass
594         else:
595             store.import_tx(tx, False)
596
597     store.commit()
598
599
600
601 def clean_session_thread():
602     while not stopping:
603         time.sleep(30)
604         t = time.time()
605         for k,s in sessions.items():
606             t0 = s['last_time']
607             if t - t0 > 5*60:
608                 print time.strftime("[%d/%m/%Y-%H:%M:%S]"), "end session", s['ip']
609                 sessions.pop(k)
610             
611
612 def irc_thread():
613     global peer_list
614     NICK = 'E_'+random_string(10)
615     while not stopping:
616         try:
617             s = socket.socket()
618             s.connect(('irc.freenode.net', 6667))
619             s.send('USER electrum 0 * :'+config.get('server','host')+' '+config.get('server','ircname')+'\n')
620             s.send('NICK '+NICK+'\n')
621             s.send('JOIN #electrum\n')
622             sf = s.makefile('r', 0)
623             t = 0
624             while not stopping:
625                 line = sf.readline()
626                 line = line.rstrip('\r\n')
627                 line = line.split()
628                 if line[0]=='PING': 
629                     s.send('PONG '+line[1]+'\n')
630                 elif '353' in line: # answer to /names
631                     k = line.index('353')
632                     for item in line[k+1:]:
633                         if item[0:2] == 'E_':
634                             s.send('WHO %s\n'%item)
635                 elif '352' in line: # answer to /who
636                     # warning: this is a horrible hack which apparently works
637                     k = line.index('352')
638                     ip = line[k+4]
639                     ip = socket.gethostbyname(ip)
640                     name = line[k+6]
641                     host = line[k+9]
642                     peer_list[name] = (ip,host)
643                 if time.time() - t > 5*60:
644                     s.send('NAMES #electrum\n')
645                     t = time.time()
646                     peer_list = {}
647         except:
648             traceback.print_exc(file=sys.stdout)
649         finally:
650             sf.close()
651             s.close()
652
653
654
655 def jsonrpc_thread(store):
656     # see http://code.google.com/p/jsonrpclib/
657     from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCServer
658     server = SimpleJSONRPCServer(('localhost', 8080))
659     server.register_function(lambda : peer_list.values(), 'peers')
660     server.register_function(cmd_stop, 'stop')
661     server.register_function(cmd_load, 'load')
662     server.register_function(lambda : block_number, 'blocks')
663     server.register_function(clear_cache, 'clear_cache')
664     server.register_function(get_cache, 'get_cache')
665     server.register_function(send_tx, 'blockchain.transaction.broadcast')
666     server.register_function(store.get_history, 'blockchain.address.get_history')
667     server.serve_forever()
668
669
670 import traceback
671
672
673 if __name__ == '__main__':
674
675     if len(sys.argv)>1:
676         import jsonrpclib
677         server = jsonrpclib.Server('http://localhost:8080')
678         cmd = sys.argv[1]
679         if cmd == 'load':
680             out = server.load(password)
681         elif cmd == 'peers':
682             out = server.peers()
683         elif cmd == 'stop':
684             out = server.stop(password)
685         elif cmd == 'clear_cache':
686             out = server.clear_cache(password)
687         elif cmd == 'get_cache':
688             out = server.get_cache(password,sys.argv[2])
689         elif cmd == 'h':
690             out = server.blockchain.address.get_history(sys.argv[2])
691         elif cmd == 'tx':
692             out = server.blockchain.transaction.broadcast(sys.argv[2])
693         elif cmd == 'b':
694             out = server.blocks()
695         print out
696         sys.exit(0)
697
698
699     print "starting Electrum server"
700     print "cache:", config.get('server', 'cache')
701
702     conf = DataStore.CONFIG_DEFAULTS
703     args, argv = readconf.parse_argv( [], conf)
704     args.dbtype= config.get('database','type')
705     if args.dbtype == 'sqlite3':
706         args.connect_args = { 'database' : config.get('database','database') }
707     elif args.dbtype == 'MySQLdb':
708         args.connect_args = { 'db' : config.get('database','database'), 'user' : config.get('database','username'), 'passwd' : config.get('database','password') }
709     elif args.dbtype == 'psycopg2':
710         args.connect_args = { 'database' : config.get('database','database') }
711     store = MyStore(args)
712     store.tx_cache = {}
713     store.mempool_keys = {}
714
715     thread.start_new_thread(listen_thread, (store,))
716     thread.start_new_thread(jsonrpc_thread, (store,))
717     thread.start_new_thread(clean_session_thread, ())
718     if (config.get('server','irc') == 'yes' ):
719         thread.start_new_thread(irc_thread, ())
720
721     while not stopping:
722         try:
723             dblock.acquire()
724             store.catch_up()
725             memorypool_update(store)
726             block_number = store.get_block_number(1)
727             dblock.release()
728         except:
729             traceback.print_exc(file=sys.stdout)
730         time.sleep(10)
731
732     print "server stopped"
733