From c974f65a30213afc958f94f12895d9bf8878432d Mon Sep 17 00:00:00 2001 From: sowle Date: Mon, 23 Oct 2023 17:10:07 +0200 Subject: [PATCH] coretests: minor fix for ionic_swap_exact_amounts_test --- tests/core_tests/ionic_swap_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core_tests/ionic_swap_tests.cpp b/tests/core_tests/ionic_swap_tests.cpp index 9a181dc5..8900f76b 100644 --- a/tests/core_tests/ionic_swap_tests.cpp +++ b/tests/core_tests/ionic_swap_tests.cpp @@ -444,7 +444,7 @@ bool ionic_swap_exact_amounts_test::c1(currency::core& c, size_t ev_index, const currency::transaction tx_is2{}; r = alice_wlt->accept_ionic_swap_proposal(proposal, tx_is2); CHECK_AND_ASSERT_MES(r, false, "Failed to accept ionic proposal"); - CHECK_AND_ASSERT_MES(check_ionic_swap_tx_outs(m_accounts, tx_is2, bob_wlt, proposal), false, ""); + CHECK_AND_ASSERT_MES(check_ionic_swap_tx_outs(m_accounts, tx_is2, alice_wlt, proposal), false, ""); CHECK_AND_ASSERT_MES(c.get_pool_transactions_count() == 1, false, "Unexpected number of txs in the pool: " << c.get_pool_transactions_count()); r = mine_next_pow_blocks_in_playtime(m_accounts[MINER_ACC_IDX].get_public_address(), c, CURRENCY_MINED_MONEY_UNLOCK_WINDOW);