diff --git a/core/src/main/java/bisq/core/dao/burningman/accounting/BurningManAccountingService.java b/core/src/main/java/bisq/core/dao/burningman/accounting/BurningManAccountingService.java index bf5138e91f..ac9ae5e5da 100644 --- a/core/src/main/java/bisq/core/dao/burningman/accounting/BurningManAccountingService.java +++ b/core/src/main/java/bisq/core/dao/burningman/accounting/BurningManAccountingService.java @@ -241,7 +241,7 @@ public class BurningManAccountingService implements DaoSetupService, DaoStateLis Date month = balanceEntry.getMonth(); long receivedBtc = balanceEntry.getAmount(); Price price = averageBsqPriceByMonth.get(month); - if (price == null) { + if (price == null || price.getValue() == 0) { return OptionalLong.empty(); } long volume = price.getVolumeByAmount(Coin.valueOf(receivedBtc)).getValue();