Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Fixing transaction_queue deadlock #985

Merged
merged 1 commit into from
Apr 21, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions miner/src/miner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,11 @@ impl MinerService for Miner {
match import {
Ok(ref res) => {
trace!(target: "own_tx", "Imported transaction to {:?} (hash: {:?})", res, hash);
trace!(target: "own_tx", "Status: {:?}", self.status());
trace!(target: "own_tx", "Status: {:?}", self.transaction_queue.status());
},
Err(ref e) => {
trace!(target: "own_tx", "Failed to import transaction {:?} (hash: {:?})", e, hash);
trace!(target: "own_tx", "Status: {:?}", self.status());
trace!(target: "own_tx", "Status: {:?}", self.transaction_queue.status());
},
}
import
Expand Down