我尝试通过Braid调用流程。该流程将List<UniqueIdentifier>
对象作为输入参数。调用流程时,出现以下错误:
error: -32000: java.util.LinkedHashMap cannot be cast to net.corda.core.contracts.UniqueIdentifier
有人可以帮忙吗?
答案 0 :(得分:0)
这是Braid的反序列化错误。它可能会在将来的版本中修复。目前的一种解决方法是在Corda中使用Array对象而不是List对象。
有用的功能是:
List.toTypedArray()
和
Array.asList()