mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-28 01:06:18 +01:00
* feat(cli): enhance check-pending to reclaim proofs The check-pending command now directly attempts to reclaim proofs that are no longer pending, replacing the previous check-only behavior. Changes: - Replace check_all_pending_proofs with reclaim_unspent functionality - Add more detailed feedback about pending proof status - Update command description to reflect new reclaim behavior - Improve error handling and status reporting This change makes the command more useful by actively reclaiming proofs rather than just checking their status. * refactor: remove CheckSpendable command and check_spent module The CheckSpendable command and its associated check_spent.rs module have been removed as their functionality is redundant with the CheckPending command.
20 lines
384 B
Rust
20 lines
384 B
Rust
pub mod balance;
|
|
pub mod burn;
|
|
pub mod cat_device_login;
|
|
pub mod cat_login;
|
|
pub mod check_pending;
|
|
pub mod create_request;
|
|
pub mod decode_request;
|
|
pub mod decode_token;
|
|
pub mod list_mint_proofs;
|
|
pub mod melt;
|
|
pub mod mint;
|
|
pub mod mint_blind_auth;
|
|
pub mod mint_info;
|
|
pub mod pay_request;
|
|
pub mod pending_mints;
|
|
pub mod receive;
|
|
pub mod restore;
|
|
pub mod send;
|
|
pub mod update_mint_url;
|