2016-04-30 17:41:24 +02:00
|
|
|
|
|
|
|
//! Bridge between Tracedb and Blockchain.
|
|
|
|
|
2016-07-07 09:39:32 +02:00
|
|
|
use util::{H256};
|
2016-04-30 17:41:24 +02:00
|
|
|
use header::BlockNumber;
|
|
|
|
use trace::DatabaseExtras as TraceDatabaseExtras;
|
|
|
|
use blockchain::{BlockChain, BlockProvider};
|
2016-05-26 18:24:51 +02:00
|
|
|
use blockchain::extras::TransactionAddress;
|
2016-07-07 09:39:32 +02:00
|
|
|
pub use types::trace_filter::Filter;
|
2016-04-30 17:41:24 +02:00
|
|
|
|
|
|
|
impl TraceDatabaseExtras for BlockChain {
|
|
|
|
fn block_hash(&self, block_number: BlockNumber) -> Option<H256> {
|
|
|
|
(self as &BlockProvider).block_hash(block_number)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn transaction_hash(&self, block_number: BlockNumber, tx_position: usize) -> Option<H256> {
|
|
|
|
(self as &BlockProvider).block_hash(block_number)
|
|
|
|
.and_then(|block_hash| {
|
|
|
|
let tx_address = TransactionAddress {
|
|
|
|
block_hash: block_hash,
|
|
|
|
index: tx_position
|
|
|
|
};
|
|
|
|
self.transaction(&tx_address)
|
|
|
|
})
|
|
|
|
.map(|tx| tx.hash())
|
|
|
|
}
|
|
|
|
}
|