nit: remove copyposta (#4024)
This commit is contained in:
parent
070e0e9613
commit
3cf708f019
|
@ -579,17 +579,7 @@ mod test {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn create_token_account(client: &BankClient, owner: &Keypair) -> Pubkey {
|
fn create_token_account(client: &BankClient, owner: &Keypair) -> Pubkey {
|
||||||
let new = Pubkey::new_rand();
|
let new = create_account(&client, &owner);
|
||||||
let instruction = system_instruction::create_account(
|
|
||||||
&owner.pubkey(),
|
|
||||||
&new,
|
|
||||||
1,
|
|
||||||
mem::size_of::<ExchangeState>() as u64,
|
|
||||||
&id(),
|
|
||||||
);
|
|
||||||
client
|
|
||||||
.send_instruction(owner, instruction)
|
|
||||||
.expect(&format!("{}:{}", line!(), file!()));
|
|
||||||
let instruction = exchange_instruction::account_request(&owner.pubkey(), &new);
|
let instruction = exchange_instruction::account_request(&owner.pubkey(), &new);
|
||||||
client
|
client
|
||||||
.send_instruction(owner, instruction)
|
.send_instruction(owner, instruction)
|
||||||
|
|
Loading…
Reference in New Issue