Skip to content

Commit

Permalink
Merge branch 'release-0.7.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed Nov 27, 2016
2 parents 812509a + 98c4ce3 commit c34c3f4
Show file tree
Hide file tree
Showing 8 changed files with 221 additions and 160 deletions.
11 changes: 11 additions & 0 deletions RELEASE-NOTES
@@ -1,3 +1,14 @@
version 0.7.12
--------------

- minor bug fixes: 2 in JSON RPC, 1 in get_utxos (affected addresslistunspent)
- leveldb / rocksdb are opened with a different maximum open files limit,
depending on whether the chain has been fully synced or not. If synced
you want the files for network sockets, if not synced for the DB engines.
Once synced the DB will be reopened with the lower limit to free up the
files for serving network connections
- various refactoring preparing for possible asynchronous block processing

version 0.7.11
--------------

Expand Down
4 changes: 2 additions & 2 deletions lib/jsonrpc.py
Expand Up @@ -277,7 +277,7 @@ async def json_notification(self, message):
except RCPError:
pass
else:
self.handle_notification(method, params)
await self.handle_notification(method, params)
return None

async def json_request(self, message):
Expand All @@ -297,7 +297,7 @@ async def json_response(self, message):
await self.handle_response(message['result'], None, message['id'])
return None

def raise_unknown_method(method):
def raise_unknown_method(self, method):
'''Respond to a request with an unknown method.'''
raise self.RPCError('unknown method: "{}"'.format(method),
self.METHOD_NOT_FOUND)
Expand Down

0 comments on commit c34c3f4

Please sign in to comment.