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"
15
15
[dependencies ]
16
16
bitcoin = { version = " 0.32.0" , default-features = false }
17
17
bitcoincore-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 }
19
19
20
20
[dev-dependencies ]
21
21
bdk_testenv = { path = " ../testenv" , default-features = false }
22
+ bdk_chain = { path = " ../chain" , version = " 0.17" }
22
23
23
24
[features ]
24
25
default = [" 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 9
9
//! mempool.
10
10
#![ warn( missing_docs) ]
11
11
12
- use bdk_chain :: { local_chain :: CheckPoint , BlockId } ;
12
+ use bdk_core :: { BlockId , CheckPoint } ;
13
13
use bitcoin:: { block:: Header , Block , BlockHash , Transaction } ;
14
14
pub use bitcoincore_rpc;
15
15
use bitcoincore_rpc:: bitcoincore_rpc_json;
You can’t perform that action at this time.
0 commit comments