diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-04-03 00:24:49 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-04-03 00:24:49 +0300 |
commit | 9606644a0beb4f2883e1e0f4c6c81b42ab40b3a1 (patch) | |
tree | 5f16ff3c7506b653862e0171d71163074f67c96e /bin/ak-mempool | |
parent | fe1fb88889b2c3949383c254f3058da24ba5e3f2 (diff) | |
download | arching-kaos-tools-9606644a0beb4f2883e1e0f4c6c81b42ab40b3a1.tar.gz arching-kaos-tools-9606644a0beb4f2883e1e0f4c6c81b42ab40b3a1.tar.bz2 arching-kaos-tools-9606644a0beb4f2883e1e0f4c6c81b42ab40b3a1.zip |
Renaming to prefix convention, introduced ipfs wrappers so it can be easier to maintain, changes in filesplitter and filejoiner as they move sm submodule namespace... like there are namespaces in bash or something
Diffstat (limited to 'bin/ak-mempool')
-rwxr-xr-x | bin/ak-mempool | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ak-mempool b/bin/ak-mempool index b0d6d4b..83b0dfb 100755 --- a/bin/ak-mempool +++ b/bin/ak-mempool @@ -5,14 +5,14 @@ # They also are a part of our swarm. # So should we ask for our peers? -ipfs swarm peers > tmp_peers +ak-ipfs-swarm-peers > tmp_peers while IFS="" read -r p || [ -n "$p" ] do peer="$(echo "$p" | sed -e 's/^.*\///')" echo "Peer $peer found! Examining..." - ipfs cat /ipns/$peer/zlatest + ak-ipfs-cat /ipns/$peer/zlatest done < tmp_peers rm tmp_peers |