Merge pull request #16843 from karalabe/txpool-fix-deadlock

core: fix transaction event asynchronicity
This commit is contained in:
Péter Szilágyi 2018-05-30 10:45:02 +03:00 committed by GitHub
commit ca34e8230e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -962,7 +962,7 @@ func (pool *TxPool) promoteExecutables(accounts []common.Address) {
}
// Notify subsystem for new promoted transactions.
if len(promoted) > 0 {
pool.txFeed.Send(NewTxsEvent{promoted})
go pool.txFeed.Send(NewTxsEvent{promoted})
}
// If the pending limit is overflown, start equalizing allowances
pending := uint64(0)