Skip to content

Commit

Permalink
Merge pull request #1117 from alvasw/make_typesafe_tor_overrides_came…
Browse files Browse the repository at this point in the history
…lcase

Typesafe config rename torrc_overrides to torrcOverrides
  • Loading branch information
alvasw authored Aug 10, 2023
2 parents c61f963 + 4ff2a80 commit 4a32921
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion desktop_app/src/main/resources/desktop.conf
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ application {
socketTimeout = 120
}
tor {
torrc_overrides = {}
torrcOverrides = {}
socketTimeout = 120
}
i2p {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import bisq.network.NetworkService;
import bisq.network.p2p.node.Address;
import bisq.network.p2p.node.ConnectionException;
import bisq.tor.onionservice.CreateOnionServiceResponse;
import bisq.tor.TorService;
import bisq.tor.onionservice.CreateOnionServiceResponse;
import com.runjva.sourceforge.jsocks.protocol.Socks5Proxy;
import lombok.EqualsAndHashCode;
import lombok.Getter;
Expand Down Expand Up @@ -39,7 +39,7 @@ public static Config from(String baseDir, com.typesafe.config.Config config) {
return new Config(
baseDir,
(int) TimeUnit.SECONDS.toMillis(config.getInt("socketTimeout")),
parseTorrcOverrideConfig(config.getConfig("torrc_overrides"))
parseTorrcOverrideConfig(config.getConfig("torrcOverrides"))
);
}

Expand Down
2 changes: 1 addition & 1 deletion oracle_node_app/src/main/resources/oracle_node.conf
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ application {
socketTimeout = 120
}
tor {
torrc_overrides = {}
torrcOverrides = {}
socketTimeout = 120
}
i2p {
Expand Down
2 changes: 1 addition & 1 deletion rest_api_app/src/main/resources/rest_api.conf
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ application {
socketTimeout = 120
}
tor {
torrc_overrides = {}
torrcOverrides = {}
socketTimeout = 120
}
i2p {
Expand Down
2 changes: 1 addition & 1 deletion seed_node_app/src/main/resources/seed_node.conf
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ application {
socketTimeout = 120
}
tor {
torrc_overrides = {}
torrcOverrides = {}
socketTimeout = 120
}
i2p {
Expand Down

0 comments on commit 4a32921

Please sign in to comment.