mirror of
https://github.com/aljazceru/cdk.git
synced 2026-02-05 05:06:14 +01:00
Merge pull request #682 from thesimplekid/cdk_common_wallet
refactor: cashu wallet moved to cdk-common
This commit is contained in:
@@ -5,6 +5,11 @@
|
||||
<!-- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -->
|
||||
|
||||
|
||||
## [Unreleased]
|
||||
### Changed
|
||||
- cashu move wallet mod to cdk-common ([thesimplekid]).
|
||||
|
||||
|
||||
## [v0.8.1](https://github.com/cashubtc/cdk/releases/tag/v0.8.1)
|
||||
### Fixed
|
||||
- cashu: Handle url with paths [PR](https://github.com/cashubtc/cdk/pull/678) ([benthecarmane]).
|
||||
|
||||
@@ -5,8 +5,6 @@ pub mod mint_url;
|
||||
pub mod nuts;
|
||||
pub mod secret;
|
||||
pub mod util;
|
||||
#[cfg(feature = "wallet")]
|
||||
pub mod wallet;
|
||||
|
||||
pub use lightning_invoice::{self, Bolt11Invoice};
|
||||
|
||||
|
||||
@@ -15,13 +15,13 @@ pub mod mint;
|
||||
pub mod payment;
|
||||
pub mod pub_sub;
|
||||
pub mod subscription;
|
||||
#[cfg(feature = "wallet")]
|
||||
pub mod wallet;
|
||||
pub mod ws;
|
||||
// re-exporting external crates
|
||||
pub use bitcoin;
|
||||
pub use cashu::amount::{self, Amount};
|
||||
pub use cashu::lightning_invoice::{self, Bolt11Invoice};
|
||||
pub use cashu::nuts::{self, *};
|
||||
#[cfg(feature = "wallet")]
|
||||
pub use cashu::wallet;
|
||||
pub use cashu::{dhke, ensure_cdk, mint_url, secret, util, SECP256K1};
|
||||
pub use error::Error;
|
||||
|
||||
Reference in New Issue
Block a user