Reputation: 11
I'm currently working on Corda's Hello World tutorial pt.2 but I am encountering an error that I don't know how to fix. Whenever I try to create an IOUFlow
between two nodes from the Corda shell:
>>> start IOUFlow iouValue: 99, otherParty: "O=PartyB,L=New York,C=US"
I get an error:
Cannot find contract attachments for com.template.IOUContractNull.
Any help in fixing this?
Upvotes: 1
Views: 64
Reputation: 1032
This error normally happens when your contract ID is not synced with your package name.
You should check your contract ID at the IOUContract file.
Upvotes: 3