File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,13 @@ readme = "README.md"
1515[dependencies ]
1616bitcoin = { version = " 0.32.0" , default-features = false }
1717bitcoincore-rpc = { version = " 0.19.0" }
18- bdk_chain = { path = " ../chain " , version = " 0.17 " , default-features = false }
18+ bdk_core = { path = " ../core " , version = " 0.1 " , default-features = false }
1919
2020[dev-dependencies ]
2121bdk_testenv = { path = " ../testenv" , default-features = false }
22+ bdk_chain = { path = " ../chain" , version = " 0.17" }
2223
2324[features ]
2425default = [" std" ]
25- std = [" bitcoin/std" , " bdk_chain /std" ]
26- serde = [" bitcoin/serde" , " bdk_chain /serde" ]
26+ std = [" bitcoin/std" , " bdk_core /std" ]
27+ serde = [" bitcoin/serde" , " bdk_core /serde" ]
Original file line number Diff line number Diff line change 99//! mempool.
1010#![ warn( missing_docs) ]
1111
12- use bdk_chain :: { local_chain :: CheckPoint , BlockId } ;
12+ use bdk_core :: { BlockId , CheckPoint } ;
1313use bitcoin:: { block:: Header , Block , BlockHash , Transaction } ;
1414pub use bitcoincore_rpc;
1515use bitcoincore_rpc:: bitcoincore_rpc_json;
You can’t perform that action at this time.
0 commit comments