Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #10 from ManfredKarrer/sync-with-voting
Browse files Browse the repository at this point in the history
Sync up with changes from voting branch
  • Loading branch information
ManfredKarrer authored Jul 11, 2018
2 parents 82cf9fb + 546a2e2 commit 9b6aa72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/bisq/monitor/MonitorMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import bisq.core.app.BisqEnvironment;
import bisq.core.app.BisqExecutable;
import bisq.core.app.ExecutableForAppWithP2p;
import bisq.core.app.misc.ExecutableForAppWithP2p;

import bisq.common.UserThread;
import bisq.common.app.AppModule;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/bisq/monitor/MonitorModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import bisq.monitor.metrics.p2p.MonitorP2PModule;

import bisq.core.app.BisqEnvironment;
import bisq.core.app.ModuleForAppWithP2p;
import bisq.core.app.misc.ModuleForAppWithP2p;

import bisq.network.p2p.P2PModule;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void requestData(NodeAddress nodeAddress) {
peersNodeAddress = nodeAddress;
requestTs = new Date().getTime();
if (!stopped) {
Set<byte[]> excludedKeys = dataStorage.getPersistableNetworkPayloadList().getMap().entrySet().stream()
Set<byte[]> excludedKeys = dataStorage.getAppendOnlyDataStoreMap().entrySet().stream()
.map(e -> e.getKey().bytes)
.collect(Collectors.toSet());

Expand Down

0 comments on commit 9b6aa72

Please sign in to comment.