Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Append nullable withdrawalTxId field to Trade proto message #4937

Closed
wants to merge 13 commits into from
Closed
Prev Previous commit
Next Next commit
Use Bisq's UserThread.executor in gRPC server
  • Loading branch information
ghubstan committed Dec 11, 2020
commit 150e2f685126e7ab7f7501d3f212ce5fa58452fd
2 changes: 2 additions & 0 deletions daemon/src/main/java/bisq/daemon/grpc/GrpcServer.java
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@

package bisq.daemon.grpc;

import bisq.common.UserThread;
import bisq.common.config.Config;

import io.grpc.Server;
@@ -48,6 +49,7 @@ public GrpcServer(Config config,
GrpcTradesService tradesService,
GrpcWalletsService walletsService) {
this.server = ServerBuilder.forPort(config.apiPort)
.executor(UserThread.getExecutor())
.addService(disputeAgentsService)
.addService(offersService)
.addService(paymentAccountsService)