feat(persist): introduce CombinedChangeSet

It is a good idea to have common changeset types stored in
`bdk_persist`. This will make it convenient for persistence crates and
`bdk_wallet` interaction.
This commit is contained in:
志宇
2024-05-21 21:08:40 +08:00
committed by Steve Myers
parent 54942a902d
commit 0958ff56b2
3 changed files with 79 additions and 3 deletions

View File

@@ -1,5 +1,8 @@
#![doc = include_str!("../README.md")]
#![no_std]
#![warn(missing_docs)]
mod changeset;
mod persist;
pub use changeset::*;
pub use persist::*;