mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-20 10:22:18 +01:00
Rename SpendFromDepositTxWindow to ManualPayoutTxWindow
This commit is contained in:
parent
c3320123c5
commit
da2b12f71a
@ -273,7 +273,7 @@ public class BisqApp extends Application {
|
||||
TradeWalletService tradeWalletService = injector.getInstance(TradeWalletService.class);
|
||||
BtcWalletService walletService = injector.getInstance(BtcWalletService.class);
|
||||
if (walletService.isWalletReady())
|
||||
new SpendFromDepositTxWindow(tradeWalletService).show();
|
||||
new ManualPayoutTxWindow(tradeWalletService).show();
|
||||
else
|
||||
new Popup<>().warning(Res.get("popup.warning.walletNotInitialized")).show();
|
||||
} else if (DevEnv.DEV_MODE) {
|
||||
|
@ -39,8 +39,8 @@ import javax.annotation.Nullable;
|
||||
import static io.bisq.gui.util.FormBuilder.addLabelInputTextField;
|
||||
|
||||
// We dont translate here as it is for dev only purpose
|
||||
public class SpendFromDepositTxWindow extends Overlay<SpendFromDepositTxWindow> {
|
||||
private static final Logger log = LoggerFactory.getLogger(SpendFromDepositTxWindow.class);
|
||||
public class ManualPayoutTxWindow extends Overlay<ManualPayoutTxWindow> {
|
||||
private static final Logger log = LoggerFactory.getLogger(ManualPayoutTxWindow.class);
|
||||
private final TradeWalletService tradeWalletService;
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@ public class SpendFromDepositTxWindow extends Overlay<SpendFromDepositTxWindow>
|
||||
// Public API
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
public SpendFromDepositTxWindow(TradeWalletService tradeWalletService) {
|
||||
public ManualPayoutTxWindow(TradeWalletService tradeWalletService) {
|
||||
this.tradeWalletService = tradeWalletService;
|
||||
type = Type.Attention;
|
||||
}
|
Loading…
Reference in New Issue
Block a user