mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Cleanup TODOs
This commit is contained in:
parent
a6a0c6ec70
commit
ed3ab79044
@ -185,7 +185,6 @@ public class MyReputationView extends ActivatableView<GridPane, Void> implements
|
||||
amountInputTextField.resetValidation();
|
||||
timeInputTextField.resetValidation();
|
||||
|
||||
//TODO maybe show generate salt button instead
|
||||
setNewRandomSalt();
|
||||
|
||||
updateList();
|
||||
|
@ -87,7 +87,6 @@ public class EconomyView extends ActivatableViewAndModel {
|
||||
|
||||
leftVBox.getChildren().addAll(dashboard, supply, transactions);
|
||||
|
||||
// TODO just until DAO is enabled
|
||||
if (!DevEnv.isDaoActivated()) {
|
||||
dashboard.setDisable(true);
|
||||
supply.setDisable(true);
|
||||
|
@ -459,7 +459,6 @@ public class ProposalsView extends ActivatableView<GridPane, Void> implements Bs
|
||||
}
|
||||
|
||||
private void onVote() {
|
||||
// TODO verify stake
|
||||
Coin stake = bsqFormatter.parseToCoin(stakeInputTextField.getText());
|
||||
try {
|
||||
// We create a dummy tx to get the miningFee for displaying it at the confirmation popup
|
||||
|
@ -86,7 +86,6 @@ public class BsqWalletView extends ActivatableViewAndModel {
|
||||
transactions = new MenuItem(navigation, toggleGroup, Res.get("dao.wallet.menuItem.transactions"), BsqTxView.class, baseNavPath);
|
||||
leftVBox.getChildren().addAll(send, receive, transactions);
|
||||
|
||||
// TODO just until DAO is enabled
|
||||
if (!DevEnv.isDaoActivated()) {
|
||||
send.setDisable(true);
|
||||
transactions.setDisable(true);
|
||||
@ -106,7 +105,6 @@ public class BsqWalletView extends ActivatableViewAndModel {
|
||||
if (selectedViewClass == null)
|
||||
selectedViewClass = BsqSendView.class;
|
||||
|
||||
// TODO just until DAO is enabled
|
||||
if (!DevEnv.isDaoActivated())
|
||||
selectedViewClass = BsqReceiveView.class;
|
||||
|
||||
|
@ -358,7 +358,6 @@ public class BsqSendView extends ActivatableView<GridPane, Void> implements BsqB
|
||||
|
||||
@Override
|
||||
public void onFailure(TxBroadcastException exception) {
|
||||
//TODO handle
|
||||
new Popup<>().warning(exception.toString());
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user