1
0

wizard: hint for primary signer xpub instead of xprv

This commit is contained in:
Sander van Grieken
2024-11-13 14:42:46 +01:00
parent 7a7c0f1606
commit 7ee863f225
2 changed files with 11 additions and 3 deletions

View File

@@ -116,8 +116,12 @@ WizardComponent {
Label {
Layout.fillWidth: true
text: cosigner
? qsTr('Enter cosigner master public key')
: qsTr('Create keystore from a master key')
? [qsTr('Please enter the master public key (xpub) of your cosigner.'),
qsTr('Enter their master private key (xprv) if you want to be able to sign for them.')
].join('\n')
: [qsTr('Please enter your master private key (xprv).'),
qsTr('You can also enter a public key (xpub) here, but be aware you will then create a watch-only wallet if all cosigners are added using public keys')
].join('\n')
wrapMode: Text.Wrap
}