mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Fix incorrect tx link to tx explorer - use @Setter
This commit is contained in:
parent
cfdd4b4757
commit
12a7fd60b2
2 changed files with 3 additions and 13 deletions
|
@ -41,12 +41,9 @@ import lombok.Setter;
|
|||
import javax.annotation.Nullable;
|
||||
|
||||
public class ExplorerAddressTextField extends AnchorPane {
|
||||
@Setter
|
||||
private static Preferences preferences;
|
||||
|
||||
public static void setPreferences(Preferences preferences) {
|
||||
ExplorerAddressTextField.preferences = preferences;
|
||||
}
|
||||
|
||||
@Getter
|
||||
private final TextField textField;
|
||||
private final Label copyIcon, blockExplorerIcon, missingAddressWarningIcon;
|
||||
|
|
|
@ -46,18 +46,11 @@ import lombok.Setter;
|
|||
import javax.annotation.Nullable;
|
||||
|
||||
public class TxIdTextField extends AnchorPane {
|
||||
@Setter
|
||||
private static Preferences preferences;
|
||||
|
||||
public static void setPreferences(Preferences preferences) {
|
||||
TxIdTextField.preferences = preferences;
|
||||
}
|
||||
|
||||
@Setter
|
||||
private static BtcWalletService walletService;
|
||||
|
||||
public static void setWalletService(BtcWalletService walletService) {
|
||||
TxIdTextField.walletService = walletService;
|
||||
}
|
||||
|
||||
@Getter
|
||||
private final TextField textField;
|
||||
private final Tooltip progressIndicatorTooltip;
|
||||
|
|
Loading…
Add table
Reference in a new issue