From ed6e1966f551f8b560ee9ea0cbe4b7669cfbba9d Mon Sep 17 00:00:00 2001 From: parketh Date: Tue, 12 Nov 2024 15:29:38 +0000 Subject: [PATCH] nit: cleanup script --- .github/workflows/publish-babylon-deployment-utils.yml | 1 + scripts/babylon-integration/utils/teardown.sh | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-babylon-deployment-utils.yml b/.github/workflows/publish-babylon-deployment-utils.yml index 5307fd1..e2eeabc 100644 --- a/.github/workflows/publish-babylon-deployment-utils.yml +++ b/.github/workflows/publish-babylon-deployment-utils.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - feat/teardown-script paths: - 'scripts/babylon-integration/utils/**' diff --git a/scripts/babylon-integration/utils/teardown.sh b/scripts/babylon-integration/utils/teardown.sh index 7571a5d..2ebd96e 100755 --- a/scripts/babylon-integration/utils/teardown.sh +++ b/scripts/babylon-integration/utils/teardown.sh @@ -6,8 +6,6 @@ source "./common.sh" # Get the consumer FP address KEYRING_DIR=/home/.babylond CONSUMER_FP_KEYRING_DIR=$KEYRING_DIR/$CONSUMER_FINALITY_PROVIDER_KEY -KEYRING_FILENAME=$(ls $CONSUMER_FP_KEYRING_DIR/keyring-test | grep '\.address$' | sed 's/\.address$//') -echo "Keyring filename: $KEYRING_FILENAME" CONSUMER_FP_ADDRESS=$(babylond keys show -a consumer-finality-provider \ --keyring-dir $CONSUMER_FP_KEYRING_DIR \ --keyring-backend test) @@ -67,4 +65,5 @@ echo FINAL_BALANCE=$(babylond query bank balances "$CONSUMER_FP_ADDRESS" \ --node "$BABYLON_RPC_URL" \ -o json | jq -r '.balances[0].amount') +echo "Initial consumer FP balance: $CONSUMER_FP_BALANCE" echo "Final consumer FP balance: $FINAL_BALANCE"