Skip to content

Commit

Permalink
🐛 Fix chain_connected Sake wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
michprev committed Oct 8, 2024
1 parent 2f5f76c commit 4ede2be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wake/lsp/sake.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async def wrapper(context: SakeContext, params: SakeParams, *args, **kwargs):
):
raise LspError(ErrorCodes.InvalidParams, "Chain instance not connected")

return await f(context, *args, **kwargs)
return await f(context, params, *args, **kwargs)

return wrapper

Expand Down

0 comments on commit 4ede2be

Please sign in to comment.