added trailing ,

This commit is contained in:
debris 2016-02-19 14:17:04 +01:00
parent a760f5263f
commit ec428c070b
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ pub enum ExtrasIndex {
/// Block blooms index /// Block blooms index
BlocksBlooms = 4, BlocksBlooms = 4,
/// Block receipts index /// Block receipts index
BlockReceipts BlockReceipts = 5,
} }
/// trait used to write Extras data to db /// trait used to write Extras data to db
@ -213,7 +213,7 @@ impl Encodable for BlockLogBlooms {
/// Neighboring log blooms on certain level /// Neighboring log blooms on certain level
pub struct BlocksBlooms { pub struct BlocksBlooms {
/// List of block blooms. /// List of block blooms.
pub blooms: [H2048; 16] pub blooms: [H2048; 16],
} }
impl BlocksBlooms { impl BlocksBlooms {
@ -269,7 +269,7 @@ pub struct BlocksBloomLocation {
/// Unique hash of BlocksBloom /// Unique hash of BlocksBloom
pub hash: H256, pub hash: H256,
/// Index within BlocksBloom /// Index within BlocksBloom
pub index: usize pub index: usize,
} }
/// Represents address of certain transaction within block /// Represents address of certain transaction within block

View File

@ -39,7 +39,7 @@ pub struct Filter {
/// ///
/// If None, match all. /// If None, match all.
/// If specified, log must contain one of these topics. /// If specified, log must contain one of these topics.
pub topics: [Option<Vec<H256>>; 4] pub topics: [Option<Vec<H256>>; 4],
} }
impl Filter { impl Filter {