Merge pull request #901 from thesimplekid/refresh_keys

feat: refactor wallet keyset management for better clarity
This commit is contained in:
thesimplekid
2025-07-23 20:49:42 +01:00
committed by GitHub
parent 8ab545ae44
commit d2e9f1a626
17 changed files with 236 additions and 162 deletions

View File

@@ -101,7 +101,7 @@ pub async fn pay_request(
.await?
{
Some(keysets_info) => keysets_info,
None => matching_wallet.get_mint_keysets().await?, // Hit the keysets endpoint if we don't have the keysets for this Mint
None => matching_wallet.load_mint_keysets().await?, // Hit the keysets endpoint if we don't have the keysets for this Mint
};
let proofs = token.proofs(&keysets_info)?;