Skip to content

Commit

Permalink
Update ArbitratorManager.java
Browse files Browse the repository at this point in the history
  • Loading branch information
retoaccess1 committed May 14, 2024
1 parent 58ffc9a commit 4ecfe15
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import haveno.core.support.dispute.agent.DisputeAgentManager;
import haveno.core.user.User;
import haveno.network.p2p.storage.payload.ProtectedStorageEntry;
import java.util.ArrayList;
//import java.util.ArrayList;TODO
import java.util.List;
import lombok.extern.slf4j.Slf4j;

Expand Down Expand Up @@ -79,7 +79,10 @@ protected List<String> getPubKeyList() {
"02a1a458df5acf4ab08fdca748e28f33a955a30854c8c1a831ee733dca7f0d2fcd",
"0374dd70f3fa6e47ec5ab97932e1cec6233e98e6ae3129036b17118650c44fd3de");
case XMR_MAINNET:
return new ArrayList<String>();
//return new ArrayList<String>();
return List.of(
"029da09bc04dea33cd11a31bc1c05aa830b9180acb84e5370ee7fde60cae9f3d03",
"02834de139c2767cd11f000f8ea71a3e168fec81132850a4a2cce65385da57a98a");
default:
throw new RuntimeException("Unhandled base currency network: " + Config.baseCurrencyNetwork());
}
Expand Down

0 comments on commit 4ecfe15

Please sign in to comment.