From 40a8c21ef3c6b3079f99a7d2fe1c3a4b41189d61 Mon Sep 17 00:00:00 2001 From: Valentine Wallace Date: Wed, 10 Jul 2019 16:57:29 -0700 Subject: [PATCH] Add fee estimation failure details to error message. --- src/action/payment.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/action/payment.js b/src/action/payment.js index b85a2df7e..1d277112e 100644 --- a/src/action/payment.js +++ b/src/action/payment.js @@ -246,7 +246,10 @@ class PaymentAction { } this._nav.goPayBitcoinConfirm(); } catch (err) { - this._notification.display({ msg: 'Fee estimation failed!', err }); + this._notification.display({ + msg: `Fee estimation failed: ${err.details}`, + err, + }); } }