mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-21 14:24:06 +01:00
Fix conflicts from previous master/merge
This commit is contained in:
parent
20cc085dc8
commit
4f1899265f
2 changed files with 1 additions and 67 deletions
|
@ -1,65 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of Bisq.
|
|
||||||
*
|
|
||||||
* Bisq is free software: you can redistribute it and/or modify it
|
|
||||||
* under the terms of the GNU Affero General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
* your option) any later version.
|
|
||||||
*
|
|
||||||
* Bisq is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
|
|
||||||
* License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
|
||||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package bisq.apitest.method.trade;
|
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
|
||||||
import org.junit.jupiter.api.MethodOrderer;
|
|
||||||
import org.junit.jupiter.api.Order;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.junit.jupiter.api.TestMethodOrder;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import bisq.apitest.method.offer.AbstractOfferTest;
|
|
||||||
|
|
||||||
// @Disabled
|
|
||||||
@Slf4j
|
|
||||||
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
|
|
||||||
public class BsqSwapTradeTestLoop extends AbstractOfferTest {
|
|
||||||
|
|
||||||
@BeforeAll
|
|
||||||
public static void setUp() {
|
|
||||||
AbstractOfferTest.setUp();
|
|
||||||
createBsqSwapBsqPaymentAccounts();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(1)
|
|
||||||
public void testGetBalancesBeforeTrade() {
|
|
||||||
BsqSwapTradeTest test = new BsqSwapTradeTest();
|
|
||||||
runTradeLoop(test);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void runTradeLoop(BsqSwapTradeTest test) {
|
|
||||||
// TODO Fix wallet inconsistency bugs after 2nd trades.
|
|
||||||
for (int tradeCount = 1; tradeCount <= 2; tradeCount++) {
|
|
||||||
log.warn("================================ Trade # {} ================================", tradeCount);
|
|
||||||
test.testGetBalancesBeforeTrade();
|
|
||||||
|
|
||||||
test.testAliceCreateBsqSwapBuyOffer();
|
|
||||||
genBtcBlocksThenWait(1, 8000);
|
|
||||||
|
|
||||||
test.testBobTakesBsqSwapOffer();
|
|
||||||
genBtcBlocksThenWait(1, 8000);
|
|
||||||
|
|
||||||
test.testGetBalancesAfterTrade();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -684,8 +684,7 @@ class OfferBookViewModel extends ActivatableViewModel {
|
||||||
return coreApi.createCryptoCurrencyPaymentAccount(DisplayUtils.createAssetsAccountName("BSQ", unusedBsqAddressAsString),
|
return coreApi.createCryptoCurrencyPaymentAccount(DisplayUtils.createAssetsAccountName("BSQ", unusedBsqAddressAsString),
|
||||||
"BSQ",
|
"BSQ",
|
||||||
unusedBsqAddressAsString,
|
unusedBsqAddressAsString,
|
||||||
isInstantPaymentMethod(offer),
|
isInstantPaymentMethod(offer));
|
||||||
false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setOfferActionHandler(OfferView.OfferActionHandler offerActionHandler) {
|
public void setOfferActionHandler(OfferView.OfferActionHandler offerActionHandler) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue