mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-18 11:18:36 -04:00
Remove old fee check code
This commit is contained in:
parent
d61719a0b4
commit
79927f0f1d
2 changed files with 4 additions and 3 deletions
|
@ -88,7 +88,7 @@ class CreateOfferDataModel extends ActivatableDataModel {
|
||||||
|
|
||||||
final BooleanProperty isWalletFunded = new SimpleBooleanProperty();
|
final BooleanProperty isWalletFunded = new SimpleBooleanProperty();
|
||||||
//final BooleanProperty isMainNet = new SimpleBooleanProperty();
|
//final BooleanProperty isMainNet = new SimpleBooleanProperty();
|
||||||
final BooleanProperty isFeeFromFundingTxSufficient = new SimpleBooleanProperty();
|
//final BooleanProperty isFeeFromFundingTxSufficient = new SimpleBooleanProperty();
|
||||||
|
|
||||||
// final ObjectProperty<Coin> feeFromFundingTxProperty = new SimpleObjectProperty(Coin.NEGATIVE_SATOSHI);
|
// final ObjectProperty<Coin> feeFromFundingTxProperty = new SimpleObjectProperty(Coin.NEGATIVE_SATOSHI);
|
||||||
final ObjectProperty<Coin> amountAsCoin = new SimpleObjectProperty<>();
|
final ObjectProperty<Coin> amountAsCoin = new SimpleObjectProperty<>();
|
||||||
|
|
|
@ -641,11 +641,12 @@ class CreateOfferViewModel extends ActivatableWithDataModel<CreateOfferDataModel
|
||||||
showTransactionPublishedScreen.get()) {
|
showTransactionPublishedScreen.get()) {
|
||||||
spinnerInfoText.set("");
|
spinnerInfoText.set("");
|
||||||
} else if (dataModel.isWalletFunded.get()) {
|
} else if (dataModel.isWalletFunded.get()) {
|
||||||
if (dataModel.isFeeFromFundingTxSufficient.get()) {
|
spinnerInfoText.set("");
|
||||||
|
/* if (dataModel.isFeeFromFundingTxSufficient.get()) {
|
||||||
spinnerInfoText.set("");
|
spinnerInfoText.set("");
|
||||||
} else {
|
} else {
|
||||||
spinnerInfoText.set("Check if funding tx miner fee is sufficient...");
|
spinnerInfoText.set("Check if funding tx miner fee is sufficient...");
|
||||||
}
|
}*/
|
||||||
} else {
|
} else {
|
||||||
spinnerInfoText.set("Waiting for funds...");
|
spinnerInfoText.set("Waiting for funds...");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue