我正在尝试获取某个节点上可用的所有帐户。

我正在使用以下代码:

    @RequestMapping("/accounts/all", method = [RequestMethod.GET])
    fun allKnownAccounts(): List<AccountInfoView> {
      return getAllAccounts().map { it.toAccountView() }
    }

    private fun getAllAccounts() = rpc.proxy.startFlowDynamic(AllAccounts::class.java, false).returnValue.get()

但是我收到以下错误



我不确定是什么导致异常发生。感谢您的所有帮助。

最佳答案

通过将getAllAccounts()函数更新为以下内容解决了该问题:

    private fun getAllAccounts() = rpc.proxy.startFlowDynamic(AllAccounts::class.java).returnValue.get()

10-08 06:01