Skip to content

Commit e03948f

Browse files
committed
fix: walletSecret not passed down correctly
repackaging 5.15.0 with patch
1 parent ba74311 commit e03948f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Assets/Thirdweb/Runtime/Unity/ThirdwebManagerBase.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,8 @@ public virtual async Task<IThirdwebWallet> ConnectWallet(WalletOptions walletOpt
359359
authProvider: walletOptions.InAppWalletOptions.AuthProvider,
360360
storageDirectoryPath: walletOptions.InAppWalletOptions.StorageDirectoryPath,
361361
siweSigner: walletOptions.InAppWalletOptions.SiweSigner,
362-
legacyEncryptionKey: walletOptions.InAppWalletOptions.LegacyEncryptionKey
362+
legacyEncryptionKey: walletOptions.InAppWalletOptions.LegacyEncryptionKey,
363+
walletSecret: walletOptions.InAppWalletOptions.WalletSecret
363364
);
364365
break;
365366

@@ -381,7 +382,8 @@ public virtual async Task<IThirdwebWallet> ConnectWallet(WalletOptions walletOpt
381382
authProvider: walletOptions.EcosystemWalletOptions.AuthProvider,
382383
storageDirectoryPath: walletOptions.EcosystemWalletOptions.StorageDirectoryPath,
383384
siweSigner: walletOptions.EcosystemWalletOptions.SiweSigner,
384-
legacyEncryptionKey: walletOptions.EcosystemWalletOptions.LegacyEncryptionKey
385+
legacyEncryptionKey: walletOptions.EcosystemWalletOptions.LegacyEncryptionKey,
386+
walletSecret: walletOptions.EcosystemWalletOptions.WalletSecret
385387
);
386388
break;
387389

0 commit comments

Comments
 (0)