Skip to content

Commit

Permalink
feat: add search kernels method to nodejs client
Browse files Browse the repository at this point in the history
  • Loading branch information
Cifko committed Jan 17, 2024
1 parent 3ab7d5d commit 2879989
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clients/nodejs/base_node_grpc_client/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ function Client(address = "127.0.0.1:18142") {
"getTokens",
"getNetworkDifficulty",
"getActiveValidatorNodes",
"getHeaderByHash"
"getHeaderByHash",
"searchKernels",
];
methods.forEach((method) => {
this[method] = (arg) => this.inner[method]().sendMessage(arg);
Expand Down

0 comments on commit 2879989

Please sign in to comment.