aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-transactions
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2023-04-03 00:24:49 +0300
committerkaotisk <kaotisk@arching-kaos.org>2023-04-03 00:24:49 +0300
commit9606644a0beb4f2883e1e0f4c6c81b42ab40b3a1 (patch)
tree5f16ff3c7506b653862e0171d71163074f67c96e /bin/ak-transactions
parentfe1fb88889b2c3949383c254f3058da24ba5e3f2 (diff)
downloadarching-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-transactions')
-rwxr-xr-xbin/ak-transactions6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ak-transactions b/bin/ak-transactions
index 9281152..5c1cf4c 100755
--- a/bin/ak-transactions
+++ b/bin/ak-transactions
@@ -17,12 +17,12 @@ $AMOUNT
$FEE
EOF
TRANSACTION_FILE="transaction_file"
- FILE_IPFS_HASH=$(ipfs add -q $TRANSACTION_FILE)
+ FILE_IPFS_HASH=$(ak-ipfs-add $TRANSACTION_FILE)
SIGN_FILE=$TRANSACTION_FILE".asc"
gpg2 --detach-sign --sign-with $FINGERPRINT --armor --output $SIGN_FILE $TRANSACTION_FILE
- FILE_SIGNATURE=$(ipfs add -q $SIGN_FILE)
+ FILE_SIGNATURE=$(ak-ipfs-add $SIGN_FILE)
cat > data <<EOF
{
@@ -45,6 +45,6 @@ then
AMOUNT="$3"
main
cat $PWD/data | jq -M
- # sh pack_z_block.sh mixtape/add $PWD/data
+ # sh ak-pack_z_block.sh mixtape/add $PWD/data
else usage
fi