Stop writes to the deprecated SVR2 enclave.

This commit is contained in:
Greyson Parrelli
2023-12-08 10:21:12 -05:00
committed by Cody Henthorne
parent 06ee096746
commit 3439861f74

View File

@@ -46,7 +46,7 @@ object SvrRepository {
private val readImplementations: List<SecureValueRecovery> = listOf(svr2, svr2Deprecated)
/** An ordered list of SVR implementations to write to. They should be in priority order, with the most important one listed first. */
private val writeImplementations: List<SecureValueRecovery> = listOf(svr2, svr2Deprecated)
private val writeImplementations: List<SecureValueRecovery> = listOf(svr2)
/**
* A lock that ensures that only one thread at a time is altering the various pieces of SVR state.