rebase builds

This commit is contained in:
Anatoly Yakovenko 2018-07-10 11:38:06 -07:00 committed by Greg Fitzgerald
parent be2bf69c93
commit 6a1b5a222a
1 changed files with 2 additions and 2 deletions

View File

@ -205,7 +205,7 @@ fn test_multi_node_basic() {
for _ in 0..N {
let keypair = KeyPair::new();
let validator = TestNode::new_with_pubkey(keypair.pubkey());
FullNode::new(
let val = FullNode::new(
validator,
false,
InFile::Path(ledger_path.clone()),
@ -293,7 +293,7 @@ fn create_leader(ledger_path: &str) -> (ReplicatedData, FullNode) {
InFile::Path(ledger_path.to_string()),
None,
None,
Some(OutFile::Path(ledger_path.clone())),
Some(OutFile::Path(ledger_path.to_string())),
);
(leader_data, leader_fullnode)
}