From 08c876afaa2753ba45a76d73d2ddbdaf905e8eb1 Mon Sep 17 00:00:00 2001 From: Roger Brogan Date: Fri, 23 Aug 2024 08:52:54 -0400 Subject: [PATCH] Fixed typo in curl command Signed-off-by: Roger Brogan Signed-off-by: Roger Brogan --- charts/firefly/templates/NOTES.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/firefly/templates/NOTES.txt b/charts/firefly/templates/NOTES.txt index 681f77b..e1ceb28 100644 --- a/charts/firefly/templates/NOTES.txt +++ b/charts/firefly/templates/NOTES.txt @@ -20,10 +20,10 @@ echo "Visit $FF_URL/api to explore the API via Swagger" echo "Visit $FF_URL/ui to use explorer UI" 2. Assuming the FireFly smart contracts have been properly deployed and registered on the chain, you can register your FireFly node's organization via the API: - curl -X POST -d '{}' -H 'Content-Type: application/json" $FF_URL/api/v1/network/register/node/organization + curl -X POST -d '{}' -H 'Content-Type: application/json' $FF_URL/api/v1/network/register/node/organization 3. Wait until your organization then registered, you can confirm its registration by listing the orgs: curl -X GET $FF_URL/api/v1/network/organizations 4. Once the org is registered, you can register the node itself: - curl -X POST -d '{}' -H 'Content-Type: application/json" $FF_URL/api/v1/network/register/node + curl -X POST -d '{}' -H 'Content-Type: application/json' $FF_URL/api/v1/network/register/node 5. Lastly, confirm the node has been registered: curl -X GET $FF_URL/api/v1/network/nodes