Skip to content

Commit

Permalink
without print when tx adds
Browse files Browse the repository at this point in the history
  • Loading branch information
ldcc committed May 25, 2018
1 parent 6dbad08 commit ff5bcba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tx_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ func (pool *TxPool) journalTx(from common.Address, tx *types.Transaction) {
// whitelisted, preventing any associated transaction from being dropped out of
// the pool due to pricing constraints.
func (pool *TxPool) add(tx *types.Transaction, local bool) (bool, error) {
fmt.Println("add tx:", tx)
// fmt.Println("add tx:", tx)
// If the transaction is already known, discard it
hash := tx.Hash()
if pool.all[hash] != nil {
Expand Down

0 comments on commit ff5bcba

Please sign in to comment.