We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd6bf43 commit d05c0d0Copy full SHA for d05c0d0
src/providers/profile/profile.ts
@@ -408,6 +408,10 @@ export class ProfileProvider {
408
if (opts.walletId && opts.walletId == wallet.id) {
409
this.logger.debug('Updating wallet from config ' + wallet.id);
410
this.updateWalletFromConfig(wallet);
411
+ } else if (opts.walletId && opts.walletId.includes(wallet.id)) {
412
+ const tokenWallet = this.getWallet(opts.walletId);
413
+ this.logger.debug('Updating token wallet from config ' + opts.walletId);
414
+ this.updateWalletFromConfig(tokenWallet);
415
}
416
});
417
return Promise.resolve(true);
0 commit comments