Add transaction to test harness to set the delegate for validator vote accounts

This commit is contained in:
Carl 2019-03-05 13:59:26 -08:00 committed by Greg Fitzgerald
parent 76a7038335
commit bd237a2d6f
1 changed files with 5 additions and 11 deletions

View File

@ -83,12 +83,7 @@ impl LocalCluster {
validator_pubkey, validator_balance validator_pubkey, validator_balance
); );
Self::create_and_fund_vote_account( Self::create_and_fund_vote_account(&mut client, &voting_keypair, &validator_keypair, 1)
&mut client,
&voting_keypair,
&validator_keypair,
1,
)
.unwrap(); .unwrap();
let validator_server = Fullnode::new( let validator_server = Fullnode::new(
validator_node, validator_node,
@ -175,12 +170,12 @@ impl LocalCluster {
vote_account, vote_account,
client.get_recent_blockhash(), client.get_recent_blockhash(),
delegate_id, delegate_id,
1, 0,
); );
client client
.retry_transfer(&from_account, &mut transaction, 5) .retry_transfer(&vote_account, &mut transaction, 5)
.expect("client transfer"); .expect("client transfer 2");
} }
info!("Checking for vote account registration"); info!("Checking for vote account registration");
@ -226,5 +221,4 @@ mod test {
let cluster = LocalCluster::new_with_config(1, 100, 3, &fullnode_exit); let cluster = LocalCluster::new_with_config(1, 100, 3, &fullnode_exit);
drop(cluster) drop(cluster)
} }
} }