Skip to content

Commit

Permalink
refactor(rpc): prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
homura committed Nov 16, 2023
1 parent 06bce6e commit 6e56c06
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/rpc/src/method.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ export class Method {
if (res.error) {
throw new ResponseException(JSON.stringify(res.error));
}
return (
this.#options.resultFormatters?.(res.result) ?? res.result
);
return this.#options.resultFormatters?.(res.result) ?? res.result;
});

clearTimeout(timeout);
Expand Down

1 comment on commit 6e56c06

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀 New canary release: 0.0.0-ckb2023-6e56c06-20231116055717

npm install @ckb-lumos/[email protected]

Please sign in to comment.