Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 70c2d91

Browse files
authored
Merge pull request #1254 from lightninglabs/dev/fee-est-err-msg
Add fee estimation failure details to error message.
2 parents 5555815 + 40a8c21 commit 70c2d91

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/action/payment.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,10 @@ class PaymentAction {
246246
}
247247
this._nav.goPayBitcoinConfirm();
248248
} catch (err) {
249-
this._notification.display({ msg: 'Fee estimation failed!', err });
249+
this._notification.display({
250+
msg: `Fee estimation failed: ${err.details}`,
251+
err,
252+
});
250253
}
251254
}
252255

0 commit comments

Comments
 (0)