eth, internal, light: fix error string capitalization (#25364)

This commit is contained in:
Seungbae.yu
2022-07-25 12:53:44 +03:00
committed by GitHub
parent 39900be087
commit d2247d9f5d
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -398,7 +398,7 @@ func (pool *TxPool) add(ctx context.Context, tx *types.Transaction) error {
hash := tx.Hash()
if pool.pending[hash] != nil {
return fmt.Errorf("Known transaction (%x)", hash[:4])
return fmt.Errorf("known transaction (%x)", hash[:4])
}
err := pool.validateTx(ctx, tx)
if err != nil {