Skip to content

Commit

Permalink
Merge pull request #55 from rustaceanrob/req-09-24
Browse files Browse the repository at this point in the history
fix(toml): specify dependencies for examples
  • Loading branch information
rustaceanrob authored Sep 24, 2024
2 parents e59abd9 + 0146a85 commit 4e172d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ name = "signet"

[[example]]
name = "wallet"
required-features = ["wallet", "trace"]
8 changes: 4 additions & 4 deletions examples/signet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ use std::net::{IpAddr, Ipv4Addr};
use std::str::FromStr;
use tokio::task;

use bdk_kyoto::logger::PrintLogger;
use bdk_kyoto::Client;
use bdk_wallet::bitcoin::{
use bdk_chain::bitcoin::{
constants::genesis_block, secp256k1::Secp256k1, Address, BlockHash, Network, ScriptBuf,
};
use bdk_wallet::chain::{
use bdk_chain::{
keychain_txout::KeychainTxOutIndex, local_chain::LocalChain, miniscript::Descriptor, FullTxOut,
IndexedTxGraph, SpkIterator,
};
use bdk_kyoto::logger::PrintLogger;
use bdk_kyoto::Client;
use kyoto::chain::checkpoints::HeaderCheckpoint;
use kyoto::core::builder::NodeBuilder;

Expand Down

0 comments on commit 4e172d5

Please sign in to comment.