From 5b6e854eb32425803553dc10c47787f1b9dfe43a Mon Sep 17 00:00:00 2001 From: Michael Gu Date: Fri, 5 Oct 2018 10:29:42 -0400 Subject: [PATCH] remove extranneous spaces --- miner/worker.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/miner/worker.go b/miner/worker.go index 2cf666dca0..04a709655e 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -695,7 +695,6 @@ func (w *worker) commitTransaction(tx *types.Transaction, coinbase common.Addres snap := w.current.state.Snapshot() receipt, _, err := core.ApplyTransaction(w.config, w.chain, &coinbase, w.current.gasPool, w.current.state, w.current.header, tx, &w.current.header.GasUsed, vm.Config{}) - log.Info("Txn executed", "receipt", tx.Hash(), "location", whereami.WhereAmI()) if err != nil { w.current.state.RevertToSnapshot(snap) @@ -752,7 +751,6 @@ func (w *worker) commitTransactions(txs *types.TransactionsByPriceAndNonce, coin log.Info("Worker found no more txns") break } - log.Info("Next txn to commit", "hash", tx.Hash()) // Error may be ignored here. The error has already been checked // during transaction acceptance is the transaction pool.