aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-peers-get-stellar
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ak-peers-get-stellar')
-rwxr-xr-xbin/ak-peers-get-stellar18
1 files changed, 0 insertions, 18 deletions
diff --git a/bin/ak-peers-get-stellar b/bin/ak-peers-get-stellar
deleted file mode 100755
index ec9eaa6..0000000
--- a/bin/ak-peers-get-stellar
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/bash
-source $AK_LIBDIR/_ak_ipfs
-stellarParticipants="$AK_WORKDIR/stellar-network-participants"
-stellarParticipantsOnline="$AK_WORKDIR/stellar-network-participants-online"
-(
-printf '['
-counter=0
-cat $stellarParticipantsOnline | while read stellarAddress akConfig
-do
- if [ $counter -ne 0 ]
- then
- printf ','
- fi
- counter=$(( $counter + 1 ))
- printf '{"stellar":{"address":"%s","config":"%s"},"node_info":%s}' "$stellarAddress" "$akConfig" "$(_ak_ipfs_cat /ipns/$akConfig)"
-done
-printf ']'
-) #| jq