get off of virtualchain.BitcoinPublicKey wherever possible in favor of keylib

This commit is contained in:
Jude Nelson
2017-03-30 14:59:14 -04:00
parent 83871ba80b
commit f777a890ac
8 changed files with 40 additions and 34 deletions

View File

@@ -1207,6 +1207,7 @@ class BlockstackdRPC( SimpleXMLRPCServer):
db.close()
log.debug("Saved %s zonefile(s)\n", sum(saved))
log.debug("Reply: {}".format({'saved': saved}))
self.analytics("put_zonefiles", {'count': len(zonefile_datas)})
return self.success_response( {'saved': saved} )

View File

@@ -1 +1,5 @@
__version__="0.14.2"
# this is the only place where version should be updated
__version_major__ = '0'
__version_minor__ = '14'
__version_patch__ = '2'
__version__ = '{}.{}.{}.0'.format(__version_major__, __version_minor__, __version_patch__)