moved creation of blockchains db transaction to apply_update function

This commit is contained in:
debris
2016-02-27 10:19:33 +01:00
parent d57518d90c
commit 01f69ca80c
2 changed files with 65 additions and 73 deletions

View File

@@ -1,23 +1,21 @@
use std::collections::HashSet;
use std::collections::HashMap;
use util::hash::H256;
use util::kvdb::DBTransaction;
use header::BlockNumber;
use blockchain::block_info::BlockInfo;
use extras::{BlockDetails, BlockReceipts, TransactionAddress, BlocksBlooms};
/// Block extras update info.
pub struct ExtrasUpdate {
/// Block info.
pub info: BlockInfo,
/// DB update batch.
pub batch: DBTransaction,
/// Numbers of blocks to update in block hashes cache.
pub block_numbers: HashSet<BlockNumber>,
pub block_hashes: HashMap<BlockNumber, H256>,
/// Hashes of blocks to update in block details cache.
pub block_details_hashes: HashSet<H256>,
pub block_details: HashMap<H256, BlockDetails>,
/// Hashes of receipts to update in block receipts cache.
pub block_receipts_hashes: HashSet<H256>,
pub block_receipts: HashMap<H256, BlockReceipts>,
/// Hashes of transactions to update in transactions addresses cache.
pub transactions_addresses_hashes: HashSet<H256>,
pub transactions_addresses: HashMap<H256, TransactionAddress>,
/// Changed blocks bloom location hashes.
pub bloom_hashes: HashSet<H256>,
pub blocks_blooms: HashMap<H256, BlocksBlooms>,
}