Skip to content

Commit

Permalink
Merge pull request #7305 from alvasw/BtcNode_Make_port_field_final
Browse files Browse the repository at this point in the history
BtcNode: Make port field final
  • Loading branch information
alejandrogarcia83 authored Nov 20, 2024
2 parents f3c986c + ba31dd7 commit 0ddbd30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/btc/nodes/BtcNodes.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public static class BtcNode {
@Nullable
private final String address; // IPv4 address
@EqualsAndHashCode.Include
private int port = DEFAULT_PORT;
private final int port;

/**
* @param fullAddress [IPv4 address:port or onion:port]
Expand Down

0 comments on commit 0ddbd30

Please sign in to comment.