new highway to miner, set_author
This commit is contained in:
parent
d3ec8588c4
commit
44fe864826
@ -477,10 +477,15 @@ impl Client {
|
|||||||
results.len()
|
results.len()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: these are only used for tests in sync and only contribute to huge Client
|
||||||
/// Import a locally created transaction.
|
/// Import a locally created transaction.
|
||||||
pub fn import_own_transaction(&self, transaction: SignedTransaction) -> Result<TransactionImportResult, EthcoreError> {
|
pub fn import_own_transaction(&self, transaction: SignedTransaction) -> Result<TransactionImportResult, EthcoreError> {
|
||||||
self.miner.import_own_transaction(self, transaction)
|
self.miner.import_own_transaction(self, transaction)
|
||||||
}
|
}
|
||||||
|
/// Set miner author.
|
||||||
|
pub fn set_author(&self, author: Address) {
|
||||||
|
self.miner.set_author(author)
|
||||||
|
}
|
||||||
|
|
||||||
/// Attempt to get a copy of a specific block's final state.
|
/// Attempt to get a copy of a specific block's final state.
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user