Fixpending (#1074)

* Fix --geth IPC for MacOS.

* fix pending_* methods in MinerService, add pending_receipts

* pending logs

* include pending logs when polling

* fixed returning pending logs multiple timees

* log type

* transactionHash is supplied to pending logs

* miner returns receipts together with hashes

* bring back miners all_transactions used by sync module
This commit is contained in:
Marek Kotewicz
2016-05-24 21:56:32 +02:00
committed by Gav Wood
parent fba5082b00
commit ebd0cdbc7a
12 changed files with 191 additions and 46 deletions

View File

@@ -1225,7 +1225,7 @@ impl ChainSync {
return 0;
}
let mut transactions = self.miner.pending_transactions();
let mut transactions = self.miner.all_transactions();
if transactions.is_empty() {
return 0;
}