File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export class RustSdkCryptoStorageProvider implements ICryptoStorageProvider {
26
26
*/
27
27
public constructor (
28
28
public readonly storagePath : string ,
29
- public readonly storageType : RustSdkCryptoStoreType = RustSdkCryptoStoreType . Sled ,
29
+ public readonly storageType : RustSdkCryptoStoreType = RustSdkCryptoStoreType . Sqlite ,
30
30
) {
31
31
this . storagePath = path . resolve ( this . storagePath ) ;
32
32
mkdirp . sync ( storagePath ) ;
@@ -69,7 +69,7 @@ export class RustSdkAppserviceCryptoStorageProvider extends RustSdkCryptoStorage
69
69
* @param baseStoragePath The *directory* to persist database details to.
70
70
* @param storageType The storage type to use. Must be supported by the rust-sdk.
71
71
*/
72
- public constructor ( private baseStoragePath : string , storageType : RustSdkCryptoStoreType = RustSdkCryptoStoreType . Sled ) {
72
+ public constructor ( private baseStoragePath : string , storageType : RustSdkCryptoStoreType = RustSdkCryptoStoreType . Sqlite ) {
73
73
super ( path . join ( baseStoragePath , "_default" ) , storageType ) ;
74
74
}
75
75
You can’t perform that action at this time.
0 commit comments