Adds signing_ts into the signature schema

This commit is contained in:
Oleg Silkin 2019-07-29 16:36:23 -04:00
parent d7f6f8fca5
commit 8d7211c17f
3 changed files with 6 additions and 9 deletions
src/server

View file

@ -75,8 +75,8 @@ async def process_json(app, body: dict) -> dict:
params = body.get('params', {})
clean_input_params(params)
logger.debug(f'Received Method {method}, params: {params}')
start = time.time()
try:
start = time.time()
if asyncio.iscoroutinefunction(METHODS[method]):
result = await METHODS[method](app, params)
else: