From 88ad3075e507fb07a719805a61cd0e59e8695c3f Mon Sep 17 00:00:00 2001 From: Harsh <115883668+NeoZ666@users.noreply.github.com> Date: Wed, 29 Jan 2025 13:24:33 +0530 Subject: [PATCH] Revert "[Doc] Rust Crate Documentation Update (#97)" This reverts commit eecb718ca1dc211505f51420ffe8d0dd51f6bda8. --- examples/bitcoin_crate/src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/bitcoin_crate/src/main.rs b/examples/bitcoin_crate/src/main.rs index 4ccf6ee..7a64dad 100644 --- a/examples/bitcoin_crate/src/main.rs +++ b/examples/bitcoin_crate/src/main.rs @@ -1,7 +1,5 @@ /* An example showing how to use the rust bitcoin crate with the coinselect crate. The input and output details are stored in separate JSON files. The inputs and outputs are first read from the file and UTXOs are constructed using a combination of the inputs and outputs. The coin selection options are initiated. The UTXOs are then converted in OutputGroups. Finally the vector of OutputGroups and CoinSelectionOpt are used to call the coin selection method to perform the selection operation. */ -#![doc = include_str!("../README.md")] - extern crate bitcoin; extern crate serde; extern crate serde_derive;