mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 06:52:41 +01:00
REF: removed debug
This commit is contained in:
parent
735a6c8f67
commit
f6fa631734
1 changed files with 3 additions and 2 deletions
|
@ -121,7 +121,7 @@ export default class TransactionsDetails extends Component {
|
|||
}
|
||||
|
||||
let tx = new HDSegwitBech32Transaction(null, this.state.tx.hash, this.state.wallet);
|
||||
if ((await tx.isOurTransaction()) && /* (await tx.getRemoteConfirmationsNum()) === 0 && FIXME */ (await tx.isSequenceReplaceable())) {
|
||||
if ((await tx.isOurTransaction()) && (await tx.getRemoteConfirmationsNum()) === 0 && (await tx.isSequenceReplaceable())) {
|
||||
return this.setState({ isRBFBumpFeePossible: buttonStatus.possible });
|
||||
} else {
|
||||
return this.setState({ isRBFBumpFeePossible: buttonStatus.notPossible });
|
||||
|
@ -136,7 +136,8 @@ export default class TransactionsDetails extends Component {
|
|||
let tx = new HDSegwitBech32Transaction(null, this.state.tx.hash, this.state.wallet);
|
||||
if (
|
||||
(await tx.isOurTransaction()) &&
|
||||
/* (await tx.getRemoteConfirmationsNum()) === 0 && FIXME */ (await tx.isSequenceReplaceable()) &&
|
||||
(await tx.getRemoteConfirmationsNum()) === 0 &&
|
||||
(await tx.isSequenceReplaceable()) &&
|
||||
(await tx.canCancelTx())
|
||||
) {
|
||||
return this.setState({ isRBFCancelPossible: buttonStatus.possible });
|
||||
|
|
Loading…
Add table
Reference in a new issue