Skip to content

Commit c77d8fa

Browse files
committed
Merge branch 'frontend-guide-unplug'
2 parents a744184 + a568f6a commit c77d8fa

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

frontends/web/src/locales/en/app.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,10 @@
738738
"text": "For the BitBox01, click on the BitBox icon in the sidebar on the left and see the Pairing section. The guide will update and you can continue following the instructions from there.\nFor the BitBox02, you can verify addresses directly on the device during the send/receive process.",
739739
"title": "How can I verify an address securely?"
740740
},
741+
"plugout": {
742+
"text": "No, once you sent coins to your BitBox address, you do not need to leave your BitBox plugged in. You are free to disconnect your BitBox.",
743+
"title": "Do I need to leave my BitBox plugged in while receiving?"
744+
},
741745
"why20": {
742746
"text": "During start-up the app generates addresses derived from your seed to see if they have received funds. As the app can generate an almost infinite number of addresses, it could spend years determining the balance. To limit this search it stops after it sees 20 addresses that have never received funds. This is the \"gap limit\" and 20 is a de-facto standard though the number is arbitrary. These are the 20 addresses you can choose from.",
743747
"title": "Why only 20 addresses?"
@@ -756,6 +760,10 @@
756760
"text": "The fee is based on the transaction data size and not its amount. The fee targets are calculated by Bitcoin Core's fee estimation algorithm for each network priority you chose. They are shown if they have a different value from the target below.\nEconomy: 24 blocks (around 4 hours for Bitcoin, 1 hour for Litecoin)\nLow: 12 blocks (around 2 hours for Bitcoin, 30 minutes for Litecoin)\nNormal: 6 blocks (around 1 hour for Bitcoin, 15 minutes for Litecoin)\nHigh: 2 blocks (around 20 minutes for Bitcoin, 5 minutes for Litecoin)\n(A block takes on average ten minutes for Bitcoin (2.5 minutes in Litecoin) to mine and the network load may vary considerably in the above periods.)",
757761
"title": "How is the fee determined?"
758762
},
763+
"plugout": {
764+
"text": "No, once you have made a transaction, you do not need to leave your BitBox plugged in. You are free to disconnect your BitBox.",
765+
"title": "Do I need to leave my BitBox plugged in while sending?"
766+
},
759767
"priority": {
760768
"text": "The higher fee you are willing to pay, the faster your transaction is typically confirmed by the network.",
761769
"title": "What is the network priority?"

frontends/web/src/routes/account/receive/receive.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ class Receive extends Component<Props, State> {
338338
<Entry key="guide.receive.address" entry={t('guide.receive.address')} />
339339
<Entry key="guide.receive.whyVerify" entry={t('guide.receive.whyVerify')} />
340340
<Entry key="guide.receive.howVerify" entry={t('guide.receive.howVerify')} />
341+
<Entry key="guide.receive.plugout" entry={t('guide.receive.plugout')} />
341342
{currentAddresses.length > 1 && <Entry key="guide.receive.whyMany" entry={t('guide.receive.whyMany')} />}
342343
{currentAddresses.length > 1 && <Entry key="guide.receive.why20" entry={t('guide.receive.why20')} />}
343344
{currentAddresses.length > 1 && <Entry key="guide.receive.addressChange" entry={t('guide.receive.addressChange')} />}

frontends/web/src/routes/account/send/send.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -865,6 +865,7 @@ class Send extends Component<Props, State> {
865865
)
866866
}
867867
<Entry key="guide.send.revert" entry={t('guide.send.revert')} />
868+
<Entry key="guide.send.plugout" entry={t('guide.send.plugout')} />
868869
</Guide>
869870
</div>
870871
);

0 commit comments

Comments
 (0)