Rename SpendFromDepositTxWindow to ManualPayoutTxWindow

This commit is contained in:
Manfred Karrer 2017-09-26 08:47:55 -05:00
parent c3320123c5
commit da2b12f71a
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46
2 changed files with 4 additions and 4 deletions

View File

@ -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) {

View File

@ -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;
}