mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-12 10:30:25 +01:00
Fix typo
This commit is contained in:
parent
1fadef15ef
commit
254059b411
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ public class ArbitratorSelection {
|
||||||
}
|
}
|
||||||
|
|
||||||
static String getLeastUsedArbitrator(List<String> lastAddressesUsedInTrades, Set<String> arbitrators) {
|
static String getLeastUsedArbitrator(List<String> lastAddressesUsedInTrades, Set<String> arbitrators) {
|
||||||
checkArgument(!arbitrators.isEmpty(), "arbitrators must nto be empty");
|
checkArgument(!arbitrators.isEmpty(), "arbitrators must not be empty");
|
||||||
List<Tuple2<String, AtomicInteger>> arbitratorTuples = arbitrators.stream()
|
List<Tuple2<String, AtomicInteger>> arbitratorTuples = arbitrators.stream()
|
||||||
.map(e -> new Tuple2<>(e, new AtomicInteger(0)))
|
.map(e -> new Tuple2<>(e, new AtomicInteger(0)))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
|
|
Loading…
Add table
Reference in a new issue