无法从CordaShell启动IOUFlow(cordapp-template教程)

时间:2017-07-30 13:51:29

标签: corda

我正在尝试运行IOU cordapp-template但是当我从shell启动IOUFlow时出现了这个错误

Corda IOU Flow Error

如果图像不可读,这就是我提供的命令

start IOUFlow arg0: 10, arg1: "CN=NodeB,O=NodeB,L=New York, C=US"

这就是我得到的错误

[iouValue: Int, otherParty: Party]: missing parameter iouValue

然而,我的目标IOUFlow是正确的,有关如何处理它的任何建议吗?

2 个答案:

答案 0 :(得分:1)

您不会将参数作为arg0arg1等提供,而是作为参数本身的名称。

Mon Jul 31 10:45:54 BST 2017>>> flow start ExampleFlow iouValue: 10, otherParty: "CN=NodeB,O=NodeB,L=New York, C=US"

为了解析原因,在:和(例如)10值之间包含空格非常重要。

答案 1 :(得分:0)

将其更改为

start ExampleFlow iouValue: 10, otherParty: "CN=NodeB,O=NodeB,L=New York, C=US"

即使你刚刚运行java示例