Updated on 2026-08-14
This commit is contained in:
parent
c4488bee29
commit
e5bd65c285
1 changed files with 3 additions and 2 deletions
|
|
@ -130,7 +130,8 @@ class WcSessionRequestConverter(
|
|||
): String? {
|
||||
return sessionsRepository.loadSessions(userWalletId)
|
||||
.firstOrNull { it.topic == sessionRequest.topic }
|
||||
?.accounts?.firstOrNull { it.chainId == sessionRequest.chainId && it.walletAddress == walletAddress }
|
||||
?.derivationPath
|
||||
?.accounts?.firstOrNull {
|
||||
it.chainId == sessionRequest.chainId && it.walletAddress.lowercase() == walletAddress?.lowercase()
|
||||
}?.derivationPath
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue