From a274818463f613f9e16526288bfa651630132f8b Mon Sep 17 00:00:00 2001 From: olli Date: Thu, 17 Oct 2024 17:02:57 +0200 Subject: [PATCH] typo fix --- dabo/functions/get_bitpanda_api_transactions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dabo/functions/get_bitpanda_api_transactions.sh b/dabo/functions/get_bitpanda_api_transactions.sh index aff8336..4b367d3 100644 --- a/dabo/functions/get_bitpanda_api_transactions.sh +++ b/dabo/functions/get_bitpanda_api_transactions.sh @@ -58,7 +58,7 @@ function get_bitpanda_api_transactions { select(.effective_leverage!= null) | .time.date_iso8601 + ",leverage-" + .type + "," + .cryptocoin_symbol + "," + .amount_cryptocoin + ",EUR," + .amount_fiat + ",Bitpanda" ' BITPANDA_trades.json >>BITPANDA.csv.tmp - # Workaround fpr staking-rewards (not availabpe per API yet (https://help.blockpit.io/hc/de-at/articles/360011790820-Wie-importiere-ich-Daten-mittels-Bitpanda-API-Key) + # Workaround for staking-rewards (not availabpe per API yet (https://help.blockpit.io/hc/de-at/articles/360011790820-Wie-importiere-ich-Daten-mittels-Bitpanda-API-Key) [ -s bitpanda-export.csv ] && cat bitpanda-export.csv | grep reward,incoming | awk -F, '{print $2",reward-staking,"$8","$7",EUR,"$5",Bitpanda"}' >>BITPANDA.csv.tmp cat BITPANDA.csv.tmp | grep -v ",reward.best," | sort >TRANSACTIONS-BITPANDA.csv