chore: cargo fmt

This commit is contained in:
Alexander Meißner
2021-06-18 15:34:58 +02:00
committed by Michael Vines
parent 6514096a67
commit 789f33e8db
11 changed files with 24 additions and 83 deletions

View File

@ -308,10 +308,8 @@ impl Message {
nonce_account_pubkey: &Pubkey,
nonce_authority_pubkey: &Pubkey,
) -> Self {
let nonce_ix = system_instruction::advance_nonce_account(
nonce_account_pubkey,
nonce_authority_pubkey,
);
let nonce_ix =
system_instruction::advance_nonce_account(nonce_account_pubkey, nonce_authority_pubkey);
instructions.insert(0, nonce_ix);
Self::new(&instructions, payer)
}