Closed grctest closed 11 months ago
Describe the bug
You can't add a bitcoin address.
To Reproduce
Try to add bitcoin address to an existing wallet, the input field won't show.
Expected behavior
The user should be able to add a bitcoin address.
Screenshots
Desktop (please complete the following information):
Windows 11
Additional context
The Bitcoin address method works when first setting up a wallet, but not when you're adding to an existing wallet.
https://github.com/bitshares/beet/blob/master/src/components/add-account.vue#L297
https://github.com/bitshares/beet/blob/master/src/components/add-account.vue#L341
Change length > 1 to length > 0 to fix it.
length > 1
length > 0
Addressed by: https://github.com/bitshares/beet/pull/275
Describe the bug
You can't add a bitcoin address.
To Reproduce
Try to add bitcoin address to an existing wallet, the input field won't show.
Expected behavior
The user should be able to add a bitcoin address.
Screenshots
Desktop (please complete the following information):
Windows 11
Additional context
The Bitcoin address method works when first setting up a wallet, but not when you're adding to an existing wallet.
https://github.com/bitshares/beet/blob/master/src/components/add-account.vue#L297
https://github.com/bitshares/beet/blob/master/src/components/add-account.vue#L341
Change
length > 1
tolength > 0
to fix it.