e4f0c0b215
* Consolidation migration * Started db amalgamation * Using client constants for columns * Adding with_columns constructor * Migrating to single db * Fixing tests. * test.sh without verbose * Fixing warnings * add migration tests that catch the bug * make multiple migrations more robust * add moved v9 * Merge branch 'noop-migrations' into single-db * spurious line * clean up migrations ordering * update comment [ci skip] * Bumping default number of max_open_files & re-ordering columns. * fix merge * fix ignored analysis tests * Caching best block content * Faster best_block_header * Adding progress to v8 migration * clean up warnings * Separate hashes and bodies in the DB * Separate hashes and bodies in the DB * Fixed tests
25 lines
821 B
Rust
25 lines
821 B
Rust
use std::collections::HashMap;
|
|
use util::numbers::H256;
|
|
use header::BlockNumber;
|
|
use blockchain::block_info::BlockInfo;
|
|
use blooms::BloomGroup;
|
|
use super::extras::{BlockDetails, BlockReceipts, TransactionAddress, LogGroupPosition};
|
|
|
|
/// Block extras update info.
|
|
pub struct ExtrasUpdate<'a> {
|
|
/// Block info.
|
|
pub info: BlockInfo,
|
|
/// Current block uncompressed rlp bytes
|
|
pub block: &'a [u8],
|
|
/// Modified block hashes.
|
|
pub block_hashes: HashMap<BlockNumber, H256>,
|
|
/// Modified block details.
|
|
pub block_details: HashMap<H256, BlockDetails>,
|
|
/// Modified block receipts.
|
|
pub block_receipts: HashMap<H256, BlockReceipts>,
|
|
/// Modified transaction addresses.
|
|
pub transactions_addresses: HashMap<H256, TransactionAddress>,
|
|
/// Modified blocks blooms.
|
|
pub blocks_blooms: HashMap<LogGroupPosition, BloomGroup>,
|
|
}
|