We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f70a0 commit ae56319Copy full SHA for ae56319
Assets/Plugins/Web3AuthSDK/Web3Auth.cs
@@ -419,15 +419,15 @@ private void sessionTimeOutAPI()
419
public string getPrivKey()
420
{
421
if (web3AuthResponse == null)
422
- throw new Exception(Web3AuthError.getError(ErrorCode.NOUSERFOUND));
+ return null
423
424
return web3AuthOptions.useCoreKitKey.Value ? web3AuthResponse.coreKitKey : web3AuthResponse.privKey;
425
}
426
427
public string getEd25519PrivKey()
428
429
430
431
432
return web3AuthOptions.useCoreKitKey.Value ? web3AuthResponse.coreKitEd25519PrivKey : web3AuthResponse.ed25519PrivKey;
433
0 commit comments