diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-03-29 23:45:49 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-03-29 23:45:49 +0300 |
commit | 286b71a6ead8c7234cfbc0b8ece05c8239a4f32c (patch) | |
tree | f4662c1517fe14018d93c5503a72b8ba9da0c674 /bin/ak-mempool | |
parent | b5394a6bd9f0b9fbd9bafc3e963dafbbc87f2ed2 (diff) | |
download | arching-kaos-tools-286b71a6ead8c7234cfbc0b8ece05c8239a4f32c.tar.gz arching-kaos-tools-286b71a6ead8c7234cfbc0b8ece05c8239a4f32c.tar.bz2 arching-kaos-tools-286b71a6ead8c7234cfbc0b8ece05c8239a4f32c.zip |
Renamed everything
Diffstat (limited to 'bin/ak-mempool')
-rwxr-xr-x | bin/ak-mempool | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/ak-mempool b/bin/ak-mempool new file mode 100755 index 0000000..b0d6d4b --- /dev/null +++ b/bin/ak-mempool @@ -0,0 +1,19 @@ +#!/bin/bash +# Assumptions: +# I suppose each ak node is connected to some IP. +# They also run IPFS. +# They also are a part of our swarm. +# So should we ask for our peers? + +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 +done < tmp_peers + +rm tmp_peers + |