From 7b3613e1f0f0fa7ba0d257b99f21436e4bda56d7 Mon Sep 17 00:00:00 2001 From: debris Date: Sat, 27 Feb 2016 10:21:44 +0100 Subject: [PATCH] updated ExtrasUpdate function --- ethcore/src/blockchain/update.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ethcore/src/blockchain/update.rs b/ethcore/src/blockchain/update.rs index 4d0fa3881..f8ca06e66 100644 --- a/ethcore/src/blockchain/update.rs +++ b/ethcore/src/blockchain/update.rs @@ -8,14 +8,14 @@ use extras::{BlockDetails, BlockReceipts, TransactionAddress, BlocksBlooms}; pub struct ExtrasUpdate { /// Block info. pub info: BlockInfo, - /// Numbers of blocks to update in block hashes cache. + /// Modified block hashes. pub block_hashes: HashMap, - /// Hashes of blocks to update in block details cache. + /// Modified block details. pub block_details: HashMap, - /// Hashes of receipts to update in block receipts cache. + /// Modified block receipts. pub block_receipts: HashMap, - /// Hashes of transactions to update in transactions addresses cache. + /// Modified transaction addresses. pub transactions_addresses: HashMap, - /// Changed blocks bloom location hashes. + /// Modified blocks blooms. pub blocks_blooms: HashMap, }