# To use the app in a REPL mode
repl = ["regex", "rustyline", "fd-lock"]
-# Avaialable databse options
+# Available database options
key-value-db = ["bdk/key-value-db"]
sqlite-db = ["bdk/sqlite"]
-# Avialable blockchain client options
+# Available blockchain client options
rpc = ["bdk/rpc"]
electrum = ["bdk/electrum"]
compact_filters = ["bdk/compact_filters"]
//!
//! This module defines all the bdk-cli commands using [structopt]
+use structopt::clap::AppSettings;
use structopt::StructOpt;
use bdk::bitcoin::util::bip32::{DerivationPath, ExtendedPrivKey};
#[cfg(feature = "repl")]
#[derive(Debug, StructOpt, Clone, PartialEq)]
+#[structopt(global_settings =&[AppSettings::NoBinaryName])]
pub enum ReplSubCommand {
#[cfg(any(
feature = "electrum",