From 595fb50f367b9ef03ae00ad4e6be139a5193a8bd Mon Sep 17 00:00:00 2001 From: todd-spruceid <125476187+todd-spruceid@users.noreply.github.com> Date: Tue, 11 Jun 2024 16:50:51 -0400 Subject: [PATCH] Add the key manager to the platform context. (#17) 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. }