Recovery
Interface
interface IRecovery {
/// @notice Recover a locked account by finalizing the target transaction chain.
/// @param txHash The hash of the target transaction to recover to (obtained via pod_getRecoveryTargetTx).
/// @param nonce The nonce of the target transaction (obtained via pod_getRecoveryTargetTx).
function recover(bytes32 txHash, uint64 nonce) external;
}Usage
Last updated

