mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-11 05:29:25 +00:00
Moves the processor to it. This ends up as a net-neutral LoC change to the processor, unfortunately, yet this makes bitcoin-serai safer/easier to use, and increases the processor's usage of bitcoin-serai. Also re-organizes bitcoin-serai a bit.
13 lines
241 B
Rust
13 lines
241 B
Rust
/// The bitcoin Rust library.
|
|
pub use bitcoin;
|
|
|
|
/// Cryptographic helpers.
|
|
pub mod crypto;
|
|
/// Wallet functionality to create transactions.
|
|
pub mod wallet;
|
|
/// A minimal asynchronous Bitcoin RPC client.
|
|
pub mod rpc;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|