Skip to content

Commit

Permalink
Enable rbf on txns
Browse files Browse the repository at this point in the history
  • Loading branch information
victorkirov committed Feb 13, 2024
1 parent 0d6d8b2 commit c14f289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/screens/sendBtc/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function SendBtcScreen() {
const handleSubmit = async (ledgerTransport?: Transport) => {
try {
setIsSubmitting(true);
const txnId = await transaction?.broadcast({ ledgerTransport });
const txnId = await transaction?.broadcast({ ledgerTransport, rbfEnabled: true });
navigate('/tx-status', {
state: {
txid: txnId,
Expand Down

0 comments on commit c14f289

Please sign in to comment.