File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ use floresta_chain::UtxoData;
1818use floresta_common:: get_spk_hash;
1919use floresta_common:: parse_descriptors;
2020
21- #[ cfg( any( test, feature = "memory-database" ) ) ]
22- pub mod memory_database;
2321pub mod merkle;
2422
2523#[ cfg( any( test, feature = "sqlite" ) ) ]
Load diff This file was deleted.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ tokio = { workspace = true }
4040# Local dependencies
4141floresta = { path = " ../floresta" , features = [
4242 " bitcoinkernel" ,
43- " memory-database " ,
43+ " sqlite " ,
4444 " electrum-server" ,
4545 " watch-only-wallet" ,
4646] }
@@ -51,7 +51,7 @@ electrum-server = ["dep:floresta-electrum"]
5151bitcoinkernel = [" floresta-chain/bitcoinkernel" ]
5252watch-only-wallet = [" dep:floresta-watch-only" ]
5353# Works only if `watch-only-wallet` is set
54- memory-database = [" floresta-watch-only?/memory-database " ]
54+ sqlite = [" floresta-watch-only?/sqlite " ]
5555flat-chainstore = [" floresta-chain/flat-chainstore" ]
5656
5757[lib ]
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use bitcoin::consensus::deserialize;
66use bitcoin:: hashes:: hex:: FromHex ;
77use bitcoin:: ScriptBuf ;
88use floresta_common:: get_spk_hash;
9- use floresta_watch_only:: memory_database :: MemoryDatabase ;
9+ use floresta_watch_only:: sqlite_database :: SqliteDatabase ;
1010use floresta_watch_only:: AddressCache ;
1111use miniscript:: bitcoin:: secp256k1:: Secp256k1 ;
1212use miniscript:: Descriptor ;
You can’t perform that action at this time.
0 commit comments