diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-07-17 09:05:37 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-07-17 09:05:37 +0300 |
commit | 3ab8a99969ba7d7b384390b608eb9ad6f5a43752 (patch) | |
tree | b7973c2d9e55d09e0682ffb3454388dddc17252d /bin | |
parent | 868795114f1acfb34149c22a9957169005bfc20f (diff) | |
download | arching-kaos-tools-3ab8a99969ba7d7b384390b608eb9ad6f5a43752.tar.gz arching-kaos-tools-3ab8a99969ba7d7b384390b608eb9ad6f5a43752.tar.bz2 arching-kaos-tools-3ab8a99969ba7d7b384390b608eb9ad6f5a43752.zip |
ak zchain: --get-latest (removing ak-get-zlatest)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ak-zchain | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/ak-zchain b/bin/ak-zchain index 06a1341..73d38ba 100755 --- a/bin/ak-zchain +++ b/bin/ak-zchain @@ -43,6 +43,8 @@ ## ## --crawl-remote-ipns Crawls a remote zchain from ipns key ## +## --get-latest Returns the latest zblock from your zchain +## fullprogrampath="$(realpath $0)" PROGRAM=$(basename $0) descriptionString="Zchain tools" @@ -65,6 +67,7 @@ if [ ! -z $1 ]; then --crawl-self) _ak_zchain_crawl_self; exit;; --crawl-remote-ipfs) _ak_zchain_crawl_remote_ipfs $2; exit;; --crawl-remote-ipns) _ak_zchain_crawl_remote_ipns $2; exit;; + --get-latest) _ak_zchain_get_latest; exit;; * ) _ak_usage;; esac else _ak_usage |