You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if the user does not add a bin or biometric key during login, we want to be able to update the pin and biometric key so they cannot be used
DOD
during updateKeys() if pin or biometric keys do not exist (are null) and the blockchain key for pin/biometric is not already null, they are updated on blockchain as eosio.null to make them unusable
// UPDATE// if pin/biometric is null, and blockchain key !== null, then update blockchain key to = `eosio.null`user.updateKeys()
integration test to check if user object pin === null, and blockchain pin !== null, then blockchain pin is set to null
integration test to check if user object pin === null, and blockchain pin === null, then blockchain pin is not updated
integration test to check if user object biometric === null, and blockchain biometric !== null, then blockchain pin is set to null
integration test to check if user object biometric === null, and blockchain biometric === null, then blockchain pin is not updated
if the user does not add a bin or biometric key during login, we want to be able to update the pin and biometric key so they cannot be used
DOD
updateKeys()
if pin or biometric keys do not exist (are null) and the blockchain key for pin/biometric is not already null, they are updated on blockchain aseosio.null
to make them unusableHint:
https://t.me/antelopedevs/235117
The text was updated successfully, but these errors were encountered: