-
Notifications
You must be signed in to change notification settings - Fork 18
Description
Summary
Specify the total amount of BSQ you are requesting, along with the USD total and BSQ/USD rate (don't include the brackets!):
- BSQ requested:
8720.93 - USD requested: 15000
- BSQ rate: 1.72 USD per BSQ
- Previous compensation request (if applicable): For Cycle 55 #1464
Contributions delivered
Add contributions you have delivered and roles you have performed here as new rows in the table below. Role line-items should include an asterisk (*) in the team column.
| Title | Team | USD | Link | Notes |
|---|---|---|---|---|
| bisq: PR Review bisq-network/bisq#6986 | dev | bisq-network/bisq#6986 | Nit Hi yonson2023, ACK Perfect! Thank you so much! Test Setup
Trades (For Pix and Wise)
|
|
| bisq: PR Review bisq-network/bisq#7007 | dev | bisq-network/bisq#7007 | ACK |
|
| bisq: PR Review bisq-network/bisq#7025 | dev | bisq-network/bisq#7025 | ACK |
|
| bisq: PR Review bisq-network/bisq#7005 | dev | bisq-network/bisq#7005 | Nit The QR Code works! I received video recordings of users testing four SEPA banking apps. Feedback
|
|
| bisq: PR Review bisq-network/bisq#7008 | dev | bisq-network/bisq#7008 | Concept ACK Good catch! The I saw that you're using a Otherwise the following change is simpler and faster: diff --git a/core/src/main/java/bisq/core/support/dispute/agent/MultipleHolderNameDetection.java b/core/src/main/java/bisq/core/support/dispute/agent/MultipleHolderNameDetection.java index 1be96332ef..09c722eed5 100644 --- a/core/src/main/java/bisq/core/support/dispute/agent/MultipleHolderNameDetection.java +++ b/core/src/main/java/bisq/core/support/dispute/agent/MultipleHolderNameDetection.java @@ -146,7 +146,10 @@ public class MultipleHolderNameDetection { /////////////////////////////////////////////////////////////////////////////////////////// public void detectMultipleHolderNames() { - String previous = suspiciousDisputesByTraderMap.toString(); + int previous = suspiciousDisputesByTraderMap.values().stream() + .mapToInt(List::size) + .sum(); + getAllDisputesByTraderMap().forEach((key, value) -> { Set<String> userNames = value.stream() .map(dispute -> { @@ -161,8 +164,12 @@ public class MultipleHolderNameDetection { suspiciousDisputesByTraderMap.put(key, value); } }); - String updated = suspiciousDisputesByTraderMap.toString(); - if (!previous.equals(updated)) { + + int updated = suspiciousDisputesByTraderMap.values().stream() + .mapToInt(List::size) + .sum(); + + if (previous != updated) { listeners.forEach(Listener::onSuspiciousDisputeDetected); } } |
|
| bisq: PR Review bisq-network/bisq#7012 | dev | bisq-network/bisq#7012 | Nit
|
|
| bisq: PR Review bisq-network/bisq#7023 | dev | bisq-network/bisq#7023 | Nit I know that someone else wrote the original code but we should try to clean up existing code when working on it. We can avoid the redudant copying of the trade list by using Apart from that I aggree with dutu. API consumers should be able to tell whether a trade failed. |
|
| bisq: Test Maker Transaction Vouts | dev | bisq-network/bisq#7013 | ||
| bisq: Refactor and Add Maker Transaction Vouts Tests | dev | bisq-network/bisq#7014 | ||
| bisq: Test All Maker BTC Cases | dev | bisq-network/bisq#7015 |
|
|
| bisq: Test All Taker BTC Cases | dev | bisq-network/bisq#7019 |
|
|
| bisq: Test all Maker BSQ Cases | dev | bisq-network/bisq#7020 |
|
|
| bisq: Test all Taker BSQ cases | dev | bisq-network/bisq#7021 |
|
|
| bisq: Implement AsyncFileWriter | dev | bisq-network/bisq#7027 | ||
| bisq: Implement AtomicFileWriter | dev | bisq-network/bisq#7032 | First, the AtomicFileWriter writes data to a rolling file and before swapping the rolling file with the active file. This makes all file writes atomic and let's Bisq recover from crashes. Changes: |
|
| bisq2: Set Tor Log Level to 'notice' in Production | dev | bisq-network/bisq2#1645 | ||
| bisq2: Add second tor seednode | dev | bisq-network/bisq2#1646 | ||
| bisq2: Create Bisq Daemon | dev | bisq-network/bisq2#1654 | ||
| bisq2: Test TorSignatureUtils | dev | bisq-network/bisq2#1665 |
|
|
| bisq2: Fix Tor Address Validation Bugs | dev | bisq-network/bisq2#1667 |
|
|
| dev | 15000 | Total for items above. |
Metadata
Metadata
Assignees
Labels
Type
Projects
Status