Add listAccounts command

This commit is contained in:
AsamK 2021-11-10 20:12:40 +01:00
parent 9c67aabebb
commit 62dd2ee49e
4 changed files with 50 additions and 1 deletions

View file

@ -119,7 +119,7 @@ public class SignalJsonRpcDispatcherHandler {
final ObjectMapper objectMapper, final String method, ContainerNode<?> params
) throws JsonRpcException {
var command = getCommand(method);
// TODO implement listAccounts, register, verify, link
// TODO implement register, verify, link
if (c != null && command instanceof JsonRpcMultiCommand<?> jsonRpcCommand) {
return runCommand(objectMapper, params, new MultiCommandRunnerImpl<>(c, jsonRpcCommand));
}