core/txpool: no need to run rotate if no local txs

Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
jsvisa 2024-02-26 14:57:50 +08:00
parent 93c541ad56
commit 17fab17388
1 changed files with 5 additions and 0 deletions

View File

@ -131,6 +131,11 @@ func (journal *journal) insert(tx *types.Transaction) error {
// rotate regenerates the transaction journal based on the current contents of
// the transaction pool.
func (journal *journal) rotate(all map[common.Address]types.Transactions) error {
// No need to rotate if there are no transactions to write
if len(all) == 0 {
return nil
}
// Close the current journal (if any is open)
if journal.writer != nil {
if err := journal.writer.Close(); err != nil {