mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Fix getBsqStateBuilder bug
putAllUnspentTxOutputMap was used 2 times instead of putAllNonBsqTxOutputMap
This commit is contained in:
parent
d6a5798003
commit
93c8f36410
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ public class DaoState implements PersistablePayload {
|
|||
.addAllCycles(cycles.stream().map(Cycle::toProtoMessage).collect(Collectors.toList()))
|
||||
.putAllUnspentTxOutputMap(unspentTxOutputMap.entrySet().stream()
|
||||
.collect(Collectors.toMap(e -> e.getKey().toString(), e -> e.getValue().toProtoMessage())))
|
||||
.putAllUnspentTxOutputMap(nonBsqTxOutputMap.entrySet().stream()
|
||||
.putAllNonBsqTxOutputMap(nonBsqTxOutputMap.entrySet().stream()
|
||||
.collect(Collectors.toMap(e -> e.getKey().toString(), e -> e.getValue().toProtoMessage())))
|
||||
.putAllSpentInfoMap(spentInfoMap.entrySet().stream()
|
||||
.collect(Collectors.toMap(e -> e.getKey().toString(), entry -> entry.getValue().toProtoMessage())))
|
||||
|
|
Loading…
Add table
Reference in a new issue