From f2b9a80fb142ba95f0cc08b3e3e013160048518c Mon Sep 17 00:00:00 2001 From: Carlos Medeiros Date: Fri, 20 Dec 2024 14:45:33 +0000 Subject: [PATCH] small fixes --- .github/workflows/swap-ci-workflow.yml | 9 ++++----- app/src/swap/handle_sign_transaction.c | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/swap-ci-workflow.yml b/.github/workflows/swap-ci-workflow.yml index 6937f2d3..ccd7ae46 100644 --- a/.github/workflows/swap-ci-workflow.yml +++ b/.github/workflows/swap-ci-workflow.yml @@ -8,12 +8,11 @@ on: - master - main - develop - - swap jobs: job_functional_tests: - uses: Zondax/app-exchange/.github/workflows/reusable_swap_functional_tests.yml@swap-cosmos + uses: LedgerHQ/app-exchange/.github/workflows/reusable_swap_functional_tests.yml@develop with: - branch_for_polkadot: ${{ github.ref }} - repo_for_polkadot: ${{ github.repository }} - test_filter: '"Atom or atom or Cosmos or cosmos"' + branch_for_cosmos: ${{ github.ref }} + repo_for_cosmos: ${{ github.repository }} + test_filter: '"ATOM or atom or Cosmos or cosmos"' diff --git a/app/src/swap/handle_sign_transaction.c b/app/src/swap/handle_sign_transaction.c index e2a692aa..45920a9c 100644 --- a/app/src/swap/handle_sign_transaction.c +++ b/app/src/swap/handle_sign_transaction.c @@ -80,7 +80,7 @@ bool copy_transaction_parameters(create_transaction_parameters_t *sign_transacti } // Ensure the received transaction matches what was validated in the Exchange app UI -// at this poin, transaction was parsed by the app,so we need to compare what we aprsed with what is saved in the global state +// at this point, transaction was parsed by the app, so we need to compare what we parsed with what is saved in the global state parser_error_t check_swap_conditions(parser_context_t *ctx_parsed_tx) { parser_error_t err = parser_unexpected_error; if (ctx_parsed_tx == NULL) {