Run through rustfmt to clean up syntax.

Change-Id: I3e79bb32554d02985857b5fa7100675c9041b14c
This commit is contained in:
Reisen 2021-04-26 15:15:51 +00:00
parent 35efbbe87f
commit d0fc326718
1 changed files with 26 additions and 28 deletions

View File

@ -1,4 +1,4 @@
use anchor_lang::{solana_program, prelude::*};
use anchor_lang::{prelude::*, solana_program};
use byteorder::ByteOrder;
use sha3::Digest;
@ -56,7 +56,6 @@ pub mod anchor_bridge {
use super::*;
pub fn verify_signatures(ctx: Context<VerifySig>, data: VerifySigsData) -> ProgramResult {
let sig_infos: Vec<SigInfo> = data
.signers
.iter()
@ -147,7 +146,6 @@ pub mod anchor_bridge {
msg_offset,
msg_size,
});
}
if sig_infos.len() != secp_ixs.len() {