Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve node startup time #78

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 37 additions & 9 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ pub struct Conf<'a> {
/// happen they are used at the time the process is spawn. When retrying other available ports
/// are returned reducing the probability of conflicts to negligible.
pub attempts: u8,

/// If set to `true` a default wallet will not be created upon startup.
pub skip_default_wallet_creation: bool,
}

impl Default for Conf<'_> {
Expand All @@ -210,6 +213,7 @@ impl Default for Conf<'_> {
tmpdir: None,
staticdir: None,
attempts: 3,
skip_default_wallet_creation: false,
}
}
}
Expand Down Expand Up @@ -304,25 +308,32 @@ impl BitcoinD {
return Err(Error::EarlyExit(status));
}
}
thread::sleep(Duration::from_millis(500));
assert!(process.stderr.is_none());
let client_result = Client::new(&rpc_url, Auth::CookieFile(cookie_file.clone()));
if let Ok(client_base) = client_result {
// RpcApi has get_blockchain_info method, however being generic with `Value` allows
// to be compatible with different version, in the end we are only interested if
// the call is succesfull not in the returned value.
if client_base.call::<Value>("getblockchaininfo", &[]).is_ok() {
// Try creating new wallet, if fails due to already existing wallet file
// try loading the same. Return if still errors.
if client_base
.create_wallet("default", None, None, None, None)
.is_err()
{
client_base.load_wallet("default")?;
if !conf.skip_default_wallet_creation {
// Try creating new wallet, if fails due to already existing wallet file
// try loading the same. Return if still errors.
if client_base
.create_wallet("default", None, None, None, None)
.is_err()
{
client_base.load_wallet("default")?;
}
break Client::new(
&node_url_default,
Auth::CookieFile(cookie_file.clone()),
)?;
} else {
break client_base;
}
break Client::new(&node_url_default, Auth::CookieFile(cookie_file.clone()))?;
}
}
thread::sleep(Duration::from_millis(100));
};

Ok(BitcoinD {
Expand Down Expand Up @@ -689,6 +700,23 @@ mod test {
assert_eq!(1, info.blocks);
}

#[test]
fn test_skip_wallet_creation() {
let mut conf = Conf::default();

conf.skip_default_wallet_creation = false;

let bitcoind = BitcoinD::with_conf(exe_path().unwrap(), &conf).unwrap();

assert!(bitcoind.client.get_new_address(None, None).is_ok());

conf.skip_default_wallet_creation = true;

let bitcoind = BitcoinD::with_conf(exe_path().unwrap(), &conf).unwrap();

assert!(bitcoind.client.get_new_address(None, None).is_err());
}

fn peers_connected(client: &Client) -> usize {
let result: Vec<Value> = client.call("getpeerinfo", &[]).unwrap();
result.len()
Expand Down