aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rwxr-xr-xbin/ak-zchain-calculate-size4
2 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index 4ee7d55..5a89639 100644
--- a/README
+++ b/README
@@ -213,7 +213,6 @@ ak-clean # Cleans up temporary folders created by these tools
ak-config # Publish your configuration to IPNS
ak-data-expand # Expands and verifies DATA blocks
ak-enter # Crawls ZCHAINS
-ak-extract-cids # Prints the CIDs from your ZCHAIN for further usage
ak-node-info # Returns IPFS CID or IPNS key for your online config
ak-get-chain-minified # Obsolete, ak-enter default output
ak-get-gpg # Return your GPG key as IPFS CID
@@ -272,6 +271,7 @@ Zchain tools
ak-zchain-chk # TODO
ak-zchain-rebase # Rebases ZCHAIN to specified ZBLOCK
ak-zchain-reset # Resets ZCHAIN to GENESIS
+ak-zchain-extract-cids # Retuns CIDs from a zchain
File splitters
--------------
diff --git a/bin/ak-zchain-calculate-size b/bin/ak-zchain-calculate-size
index ca41e53..fe99187 100755
--- a/bin/ak-zchain-calculate-size
+++ b/bin/ak-zchain-calculate-size
@@ -7,9 +7,9 @@ cd $temp
if [ ! -z $1 ] && [ -n "$1" ]
then
- ak-extract-cids $1 > to_stats
+ ak-zchain-extract-cids $1 > to_stats
else
- ak-extract-cids > to_stats
+ ak-zchain-extract-cids > to_stats
fi
sum=0 ; while IFS="" read -r p || [ -n "$p" ]