Fix decrypted data for blockchain data

This commit is contained in:
DwCay
2022-08-23 11:17:34 +03:00
parent 0a0151d1dd
commit fc977cc43a
2 changed files with 2 additions and 2 deletions

View File

@@ -227,7 +227,7 @@ class Store {
return {
...initialData,
status: 'Blockchained',
value: `${elem.value.slice(0,4)}****${elem.value.slice(elem.value.length-4)}`
value: elem.value
}
}
const [seed, value] = cryptography.decryptMessageWithPassphrase(elem.value, elem.value_nonce, this.passPhrase, this.pubKey).split(':');