0
votes

I am following documentation in here :https://docs.corda.net/network-bootstrapper.html to bootstrap test network. In the section: "Providing CorDapps to the Network Bootstrapper", we are asked to place cordapp jar along with the conf files.

i run the command below:

java -jar corda-network-bootstrapper-3.2-corda-executable.jar "."

After, I see message Bootstrapping complete!

But, when i go into the node folders, none of them have the cordapp in their directories ? How do i know that cordapp is installed ?

Also, another issue with the command is I cant provide the directory using --dir parameter.

Can you please suggest any work around for these issues ?

Thanks.

Update

Below are the screenshots for commands in Mac OSX:

This is my folder structure:

enter image description here

Error I am getting after I execute the command:

enter image description here

1

1 Answers

1
votes

Your jar should be present inside your node's root/cordapps directory. If it's not, than bootstrapper is unable to identify your cordapp. Try adding --verbose and it should print something like "Found the following CorDapps: "

Also when you start the corda nodes, CLI will show all installed cordApps.

For your dir issue, please add the error message here and the type of your operating system. It's working fine here on Linux.