fix: always include change output for fee

This commit is contained in:
Vlad Stan 2022-09-28 10:33:43 +03:00
parent a8b90bd595
commit 463941ec94
2 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,7 @@
<send-to
:data.sync="sendToList"
:fee-rate="feeRate"
:tx-size="txSizeNoChange"
:tx-size="txSize"
:selected-amount="selectedAmount"
:sats-denominated="satsDenominated"
@update:outputs="handleOutputsChange"

View File

@ -923,6 +923,7 @@ async function serialSigner(path) {
},
decryptData: async function (value) {
if (!this.sharedSecret) {
console.log('/error Secure session not established!')
return '/error Secure session not established!'
}
try {
@ -943,6 +944,7 @@ async function serialSigner(path) {
.trim()
return command
} catch (error) {
console.log('/error Failed to decrypt message from device!')
return '/error Failed to decrypt message from device!'
}
},