From 446ac0aeb5d80e6a05f375b195441d409bc1a021 Mon Sep 17 00:00:00 2001 From: Todd Showalter Date: Tue, 11 Jun 2024 16:43:01 -0400 Subject: [PATCH] Add the key manager to the platform context. Adds the key manager to the platfom context. --- Sources/WalletSdk/PlatformContext.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/WalletSdk/PlatformContext.swift b/Sources/WalletSdk/PlatformContext.swift index a145241..67c9a1d 100644 --- a/Sources/WalletSdk/PlatformContext.swift +++ b/Sources/WalletSdk/PlatformContext.swift @@ -17,6 +17,7 @@ import Foundation // A container for platform-specific subsystems. class SpruceKitPlatformContext: NSObject { + let keyMgr = KeyManager() // Keys let storageMgr = StorageManager() // Secure storage. }