Skip to content

Commit

Permalink
ADR 8 -> ADR 0008
Browse files Browse the repository at this point in the history
  • Loading branch information
matevz committed Mar 29, 2022
1 parent 2213333 commit f2f6bca
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Object {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
width: 400px;
width: 440px;
}
.c12 {
Expand Down
4 changes: 2 additions & 2 deletions src/app/pages/OpenWalletPage/Features/FromLedger/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export function FromLedgerModal(props: FromLedgerModalProps) {
value: DerivationPathTypeLegacy,
},
{
label: t('ledger.derivationPathType.adr8', 'ADR 8 (recommended for new wallets)'),
label: t('ledger.derivationPathType.adr8', 'ADR 0008 (recommended for new wallets)'),
value: DerivationPathTypeAdr8,
},
]
Expand Down Expand Up @@ -153,7 +153,7 @@ export function FromLedgerModal(props: FromLedgerModalProps) {
>
{t('openWallet.ledger.derivationPath', 'Derivation path')}
</Box>
<Box width="400px">
<Box width="440px">
<Select
id="DerivationPathSelect"
labelKey="label"
Expand Down
2 changes: 1 addition & 1 deletion src/app/state/ledger/saga.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { OasisTransaction } from 'app/lib/transaction'

describe('Ledger Sagas', () => {
describe('enumerateAccounts', () => {
it('should list ADR8 accounts', async () => {
it('should list ADR 0008 accounts', async () => {
const validAccount = {
publicKey: await addressToPublicKey('oasis1qz0k5q8vjqvu4s4nwxyj406ylnflkc4vrcjghuwk'),
path: Ledger.mustGetPath(DerivationPathTypeAdr8, 0),
Expand Down
2 changes: 1 addition & 1 deletion src/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
},
"derivationPathType": {
"legacy": "Legacy (backward compatible)",
"adr8": "ADR 8 (recommended for new wallets)"
"adr8": "ADR 0008 (recommended for new wallets)"
}
},
"transaction": {
Expand Down
2 changes: 1 addition & 1 deletion src/locales/fr/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
},
"derivationPathType": {
"legacy": "Legacy (backward compatible)",
"adr8": "ADR 8 (recommended for new wallets)"
"adr8": "ADR 0008 (recommended for new wallets)"
}
},
"transaction": {
Expand Down

0 comments on commit f2f6bca

Please sign in to comment.