rustfmt changes

This commit is contained in:
Alex Stokes
2018-12-12 19:22:52 -08:00
parent 5eabdad0dc
commit ca3aa82f4e

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)
}