Make init() method public

This commit is contained in:
ghubstan 2020-07-12 21:56:51 -03:00
parent 8da4646584
commit db5a685468
No known key found for this signature in database
GPG key ID: E35592D6800A861E

View file

@ -55,7 +55,7 @@ public class GrpcStubs {
this.port = bisqAppConfig.apiPort;
}
GrpcStubs init() {
public GrpcStubs init() {
var channel = ManagedChannelBuilder.forAddress(host, port).usePlaintext().build();
Runtime.getRuntime().addShutdownHook(new Thread(() -> {
try {