fix: always include change output for fee
This commit is contained in:
parent
a8b90bd595
commit
463941ec94
2 changed files with 3 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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!'
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue