block_hash => blockhash

This commit is contained in:
Michael Vines
2019-03-02 10:25:16 -08:00
committed by Greg Fitzgerald
parent 0f1582c196
commit a94880574b
55 changed files with 591 additions and 597 deletions

View File

@ -11,7 +11,7 @@ fn test_local_drone() {
let keypair = Keypair::new();
let to = Keypair::new().pubkey();
let tokens = 50;
let block_hash = Hash::new(&to.as_ref());
let blockhash = Hash::new(&to.as_ref());
let expected_instruction = SystemInstruction::CreateAccount {
tokens,
space: 0,
@ -22,15 +22,15 @@ fn test_local_drone() {
&[to],
system_program::id(),
&expected_instruction,
block_hash,
blockhash,
0,
);
expected_tx.sign(&[&keypair], block_hash);
expected_tx.sign(&[&keypair], blockhash);
let (sender, receiver) = channel();
run_local_drone(keypair, sender);
let drone_addr = receiver.recv().unwrap();
let result = request_airdrop_transaction(&drone_addr, &to, tokens, block_hash);
let result = request_airdrop_transaction(&drone_addr, &to, tokens, blockhash);
assert_eq!(expected_tx, result.unwrap());
}