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 a84d7f7 commit 059286cCopy full SHA for 059286c
1 file changed
crates/cdk/src/wallet/mod.rs
@@ -364,7 +364,13 @@ impl Wallet {
364
);
365
*auth_wallet = Some(new_auth_wallet.clone());
366
367
- self.client.set_auth_wallet(Some(new_auth_wallet)).await;
+ self.client
368
+ .set_auth_wallet(Some(new_auth_wallet.clone()))
369
+ .await;
370
+
371
+ if let Err(e) = new_auth_wallet.refresh_keysets().await {
372
+ tracing::error!("Could not fetch auth keysets: {}", e);
373
+ }
374
}
375
376
0 commit comments