From 59c6ea219dbb2c80bd02267fad0ba2eb5c746728 Mon Sep 17 00:00:00 2001 From: rootzoll Date: Tue, 17 May 2022 19:03:35 +0200 Subject: [PATCH] fix values --- home.admin/config.scripts/lnd.fwdreport.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home.admin/config.scripts/lnd.fwdreport.sh b/home.admin/config.scripts/lnd.fwdreport.sh index e73197cf2..43bf94e55 100755 --- a/home.admin/config.scripts/lnd.fwdreport.sh +++ b/home.admin/config.scripts/lnd.fwdreport.sh @@ -99,11 +99,11 @@ do channelOutPubKey=${channelIdPubKeyLookup[$channelIdOut]} channelInPubKeyLookup="" if [ "${channelInPubKey}" != "" ]; then - channelInPubKeyLookup=pubKeyAliasLookup[$channelInPubKey] + channelInPubKeyLookup=$pubKeyAliasLookup[$channelInPubKey] fi channelOutPubKeyLookup="" if [ "${channelInPubKey}" != "" ]; then - channelOutPubKeyLookup=pubKeyAliasLookup[$channelOutPubKey] + channelOutPubKeyLookup=$pubKeyAliasLookup[$channelOutPubKey] fi OUTPUT="${OUTPUT} ${eventDate},${channelInPubKeyLookup},${channelOutPubKeyLookup},$amountIn,$fee"