mirror of
https://codeberg.org/r4v3r23/mysu.git
synced 2024-11-10 05:03:44 +01:00
fee selection fixes
This commit is contained in:
parent
7c60aa576f
commit
95a641f53f
@ -1,39 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2017 m2049r
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package net.mynero.wallet.data;
|
|
||||||
|
|
||||||
import net.mynero.wallet.model.PendingTransaction;
|
|
||||||
|
|
||||||
public class PendingTx {
|
|
||||||
final public PendingTransaction.Status status;
|
|
||||||
final public String error;
|
|
||||||
final public long amount;
|
|
||||||
final public long dust;
|
|
||||||
final public long fee;
|
|
||||||
final public String txId;
|
|
||||||
final public long txCount;
|
|
||||||
|
|
||||||
public PendingTx(PendingTransaction pendingTransaction) {
|
|
||||||
status = pendingTransaction.getStatus();
|
|
||||||
error = pendingTransaction.getErrorString();
|
|
||||||
amount = pendingTransaction.getAmount();
|
|
||||||
dust = pendingTransaction.getDust();
|
|
||||||
fee = pendingTransaction.getFee();
|
|
||||||
txId = pendingTransaction.getFirstTxId();
|
|
||||||
txCount = pendingTransaction.getTxCount();
|
|
||||||
}
|
|
||||||
}
|
|
@ -144,7 +144,7 @@ public class SendBottomSheetDialog extends BottomSheetDialogFragment {
|
|||||||
}
|
}
|
||||||
Toast.makeText(getActivity(), getString(R.string.creating_tx), Toast.LENGTH_SHORT).show();
|
Toast.makeText(getActivity(), getString(R.string.creating_tx), Toast.LENGTH_SHORT).show();
|
||||||
createButton.setEnabled(false);
|
createButton.setEnabled(false);
|
||||||
createTx(address, amount, sendAll, PendingTransaction.Priority.Priority_Default);
|
createTx(address, amount, sendAll, priority);
|
||||||
} else if (!validAddress) {
|
} else if (!validAddress) {
|
||||||
Toast.makeText(getActivity(), getString(R.string.send_address_invalid), Toast.LENGTH_SHORT).show();
|
Toast.makeText(getActivity(), getString(R.string.send_address_invalid), Toast.LENGTH_SHORT).show();
|
||||||
} else {
|
} else {
|
||||||
@ -219,7 +219,7 @@ public class SendBottomSheetDialog extends BottomSheetDialogFragment {
|
|||||||
private void createTx(String address, String amount, boolean sendAll, PendingTransaction.Priority feePriority) {
|
private void createTx(String address, String amount, boolean sendAll, PendingTransaction.Priority feePriority) {
|
||||||
AsyncTask.execute(() -> {
|
AsyncTask.execute(() -> {
|
||||||
PendingTransaction pendingTx = TxService.getInstance().createTx(address, amount, sendAll, feePriority);
|
PendingTransaction pendingTx = TxService.getInstance().createTx(address, amount, sendAll, feePriority);
|
||||||
if (pendingTx != null) {
|
if (pendingTx != null && pendingTx.getStatus() == PendingTransaction.Status.Status_Ok) {
|
||||||
_pendingTransaction.postValue(pendingTx);
|
_pendingTransaction.postValue(pendingTx);
|
||||||
} else {
|
} else {
|
||||||
Activity activity = getActivity();
|
Activity activity = getActivity();
|
||||||
|
Loading…
Reference in New Issue
Block a user