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 dfbebe7 commit a29c7bfCopy full SHA for a29c7bf
1 file changed
app/core/WalletConnect/WalletConnect2Session.ts
@@ -445,13 +445,13 @@ class WalletConnect2Session {
445
);
446
447
if (accounts.length === 0) {
448
- const effectiveApprovedAccounts = getPermittedAccounts(this.channelId);
449
- if (effectiveApprovedAccounts.length > 0) {
+ const approvedAccounts = getPermittedAccounts(this.channelId);
+ if (approvedAccounts.length > 0) {
450
DevLogger.log(
451
`WC2::updateSession found approved accounts`,
452
- effectiveApprovedAccounts,
+ approvedAccounts,
453
454
- accounts = effectiveApprovedAccounts;
+ accounts = approvedAccounts;
455
} else {
456
const referencedAdapterNamespaces =
457
proposalReferencedAdapterNamespaces({
0 commit comments