我正在尝试运行IOU cordapp-template但是当我从shell启动IOUFlow时出现了这个错误
如果图像不可读,这就是我提供的命令
start IOUFlow arg0: 10, arg1: "CN=NodeB,O=NodeB,L=New York, C=US"
这就是我得到的错误
[iouValue: Int, otherParty: Party]: missing parameter iouValue
然而,我的目标IOUFlow是正确的,有关如何处理它的任何建议吗?
答案 0 :(得分:1)
您不会将参数作为arg0
,arg1
等提供,而是作为参数本身的名称。
即
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示例