rustfmt changes

This commit is contained in:
Alex Stokes 2018-12-12 19:22:52 -08:00
parent 5eabdad0dc
commit ca3aa82f4e
No known key found for this signature in database
GPG Key ID: 51CE1721B245C086

View File

@ -96,8 +96,10 @@ fn generate_cycle(
.map(|(j, shard_indices)| ShardAndCommittee {
shard: ((shard_start + j) % shard_count) as u16,
committee: shard_indices.to_vec(),
}).collect()
}).collect();
})
.collect()
})
.collect();
Ok(cycle)
}