Skip to content

Commit 6973522

Browse files
authored
Merge pull request #57 from buffrr/sqlite
Sqlite backend
2 parents eedff19 + d410aab commit 6973522

20 files changed

+2915
-1124
lines changed

Cargo.lock

+118-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/src/bin/spaced.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use env_logger::Env;
55
use log::error;
66
use spaced::{
77
config::{safe_exit, Args},
8-
rpc::{AsyncChainState, LoadedWallet, RpcServerImpl, WalletManager},
8+
rpc::{AsyncChainState, RpcServerImpl, WalletLoadRequest, WalletManager},
99
source::{BitcoinBlockSource, BitcoinRpc},
1010
store,
1111
sync::Spaced,
@@ -53,7 +53,7 @@ impl Composer {
5353
}
5454
}
5555

56-
async fn setup_rpc_wallet(&mut self, spaced: &Spaced, rx: mpsc::Receiver<LoadedWallet>) {
56+
async fn setup_rpc_wallet(&mut self, spaced: &Spaced, rx: mpsc::Receiver<WalletLoadRequest>) {
5757
let wallet_service = RpcWallet::service(
5858
spaced.network,
5959
spaced.rpc.clone(),

0 commit comments

Comments
 (0)