fix: add sats-denominated for confirmations

This commit is contained in:
Vlad Stan 2022-07-28 16:58:07 +03:00
parent bf5e6330a8
commit 1089be017b
3 changed files with 3 additions and 2 deletions

View File

@ -158,7 +158,7 @@
<q-form @submit="hwwSignPsbt" class="q-gutter-md">
<div class="row q-mt-lg">
<div class="col-12">
<span>Check data on your hardware device.</span>
<span>Check data on the display of the hardware device.</span>
</div>
</div>
<div v-if="tx">

View File

@ -4,7 +4,7 @@ async function serialSigner(path) {
name: 'serial-signer',
template: t,
props: [],
props: ['sats-denominated'],
data: function () {
return {
selectedPort: null,

View File

@ -10,6 +10,7 @@
<template v-slot:serial>
<serial-signer
ref="serialSigner"
:sats-denominated="config.data.sats_denominated"
@signed:psbt="updateSignedPsbt"
></serial-signer>
</template>