Skip to content

Commit

Permalink
fix: walletSecret not passed down correctly
Browse files Browse the repository at this point in the history
repackaging 5.15.0 with patch
  • Loading branch information
0xFirekeeper committed Jan 10, 2025
1 parent ba74311 commit e03948f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Assets/Thirdweb/Runtime/Unity/ThirdwebManagerBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@ public virtual async Task<IThirdwebWallet> ConnectWallet(WalletOptions walletOpt
authProvider: walletOptions.InAppWalletOptions.AuthProvider,
storageDirectoryPath: walletOptions.InAppWalletOptions.StorageDirectoryPath,
siweSigner: walletOptions.InAppWalletOptions.SiweSigner,
legacyEncryptionKey: walletOptions.InAppWalletOptions.LegacyEncryptionKey
legacyEncryptionKey: walletOptions.InAppWalletOptions.LegacyEncryptionKey,
walletSecret: walletOptions.InAppWalletOptions.WalletSecret
);
break;

Expand All @@ -381,7 +382,8 @@ public virtual async Task<IThirdwebWallet> ConnectWallet(WalletOptions walletOpt
authProvider: walletOptions.EcosystemWalletOptions.AuthProvider,
storageDirectoryPath: walletOptions.EcosystemWalletOptions.StorageDirectoryPath,
siweSigner: walletOptions.EcosystemWalletOptions.SiweSigner,
legacyEncryptionKey: walletOptions.EcosystemWalletOptions.LegacyEncryptionKey
legacyEncryptionKey: walletOptions.EcosystemWalletOptions.LegacyEncryptionKey,
walletSecret: walletOptions.EcosystemWalletOptions.WalletSecret
);
break;

Expand Down

0 comments on commit e03948f

Please sign in to comment.