Skip to content

Commit

Permalink
suppreseed print for setting new local account to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kiltsonfire committed Jun 4, 2024
1 parent bc24efc commit abe20f3
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 @@ -889,7 +889,7 @@ func (pool *TxPool) add(tx *types.Transaction, local bool) (replaced bool, err e
}
// Mark local addresses and journal local transactions
if local && !pool.locals.contains(internal) {
pool.logger.WithField("address", from).Info("Setting new local account")
pool.logger.WithField("address", from).Debug("Setting new local account")
pool.locals.add(internal)
pool.priced.Removed(pool.all.RemoteToLocals(pool.locals)) // Migrate the remotes if it's marked as local first time.
}
Expand Down

0 comments on commit abe20f3

Please sign in to comment.