Skip to content

Commit

Permalink
Update generated QR code strings
Browse files Browse the repository at this point in the history
  • Loading branch information
comountainclimber committed Mar 29, 2021
1 parent 2fc0430 commit dfbfdcb
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -26,10 +26,10 @@ class ShowQrForExportModal extends Component<Props> {
const { address, encryptedWIF, IS_NEP2_EXPORT, IS_ADDRESS } = this.props
let importString
if (IS_NEP2_EXPORT) {
importString = encryptedWIF
importString = `neon://import_key/${encryptedWIF}`
}
if (IS_ADDRESS) {
importString = address
importString = `neon://import_address/${address}`
}
setTimeout(() => {
this.props.handleCreateCanvas(this.targetCanvas, importString)
Expand Down

0 comments on commit dfbfdcb

Please sign in to comment.